easywork-common-lib 1.0.368 → 1.0.370
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.
- package/dist/common/database/base.entity.d.ts +1 -1
- package/dist/common/database/base.entity.js +1 -1
- package/dist/common/database/base.entity.js.map +1 -1
- package/dist/entities/group.entity.js.map +1 -1
- package/dist/entities/index.d.ts +0 -1
- package/dist/entities/index.js +0 -1
- package/dist/entities/index.js.map +1 -1
- package/dist/entities/menu-permissions.entity.d.ts +7 -0
- package/dist/entities/menu-permissions.entity.js +42 -0
- package/dist/entities/menu-permissions.entity.js.map +1 -0
- package/dist/entities/notifications/notification.entity.d.ts +1 -1
- package/dist/entities/notifications/notification.entity.js +1 -1
- package/dist/entities/notifications/notification.entity.js.map +1 -1
- package/dist/entities/notifications/push-token.entity.d.ts +1 -1
- package/dist/entities/notifications/push-token.entity.js +1 -1
- package/dist/entities/notifications/push-token.entity.js.map +1 -1
- package/dist/entities/otp-log.entity.d.ts +1 -1
- package/dist/entities/otp-log.entity.js +1 -1
- package/dist/entities/otp-log.entity.js.map +1 -1
- package/dist/entities/permission.entity.d.ts +1 -1
- package/dist/entities/permission.entity.js +1 -1
- package/dist/entities/permission.entity.js.map +1 -1
- package/dist/entities/profile.entity.d.ts +1 -1
- package/dist/entities/profile.entity.js +2 -2
- package/dist/entities/profile.entity.js.map +1 -1
- package/dist/entities/refresh-token.entity.d.ts +1 -1
- package/dist/entities/refresh-token.entity.js +1 -1
- package/dist/entities/refresh-token.entity.js.map +1 -1
- package/dist/entities/sales/contact.entity.d.ts +1 -1
- package/dist/entities/sales/contact.entity.js +1 -1
- package/dist/entities/sales/contact.entity.js.map +1 -1
- package/dist/entities/sales/lead.entity.d.ts +1 -1
- package/dist/entities/sales/lead.entity.js +1 -1
- package/dist/entities/sales/lead.entity.js.map +1 -1
- package/dist/entities/sales/poliza.entity.d.ts +1 -1
- package/dist/entities/sales/poliza.entity.js +1 -1
- package/dist/entities/sales/poliza.entity.js.map +1 -1
- package/dist/entities/sales/receipt.entity.d.ts +1 -1
- package/dist/entities/sales/receipt.entity.js +1 -1
- package/dist/entities/sales/receipt.entity.js.map +1 -1
- package/dist/entities/tag.entity.d.ts +1 -1
- package/dist/entities/tag.entity.js +1 -1
- package/dist/entities/tag.entity.js.map +1 -1
- package/dist/entities/thirdparty/user-email-relation.entity.d.ts +1 -1
- package/dist/entities/thirdparty/user-email-relation.entity.js +1 -1
- package/dist/entities/thirdparty/user-email-relation.entity.js.map +1 -1
- package/dist/entities/tools/calendar/event.entity.d.ts +1 -1
- package/dist/entities/tools/calendar/event.entity.js +1 -1
- package/dist/entities/tools/calendar/event.entity.js.map +1 -1
- package/dist/entities/tools/task-comment.entity.d.ts +1 -1
- package/dist/entities/tools/task-comment.entity.js +1 -1
- package/dist/entities/tools/task-comment.entity.js.map +1 -1
- package/dist/entities/tools/task.entity.d.ts +1 -1
- package/dist/entities/tools/task.entity.js +13 -13
- package/dist/entities/tools/task.entity.js.map +1 -1
- package/dist/entities/user.entity.d.ts +3 -1
- package/dist/entities/user.entity.js +14 -2
- package/dist/entities/user.entity.js.map +1 -1
- package/dist/entities/user_entity/group.entity.d.ts +5 -0
- package/dist/entities/user_entity/group.entity.js +33 -0
- package/dist/entities/user_entity/group.entity.js.map +1 -0
- package/dist/entities/user_entity/index.d.ts +6 -0
- package/dist/entities/user_entity/index.js +23 -0
- package/dist/entities/user_entity/index.js.map +1 -0
- package/dist/entities/user_entity/menu-permissions.entity.d.ts +7 -0
- package/dist/entities/user_entity/menu-permissions.entity.js +42 -0
- package/dist/entities/user_entity/menu-permissions.entity.js.map +1 -0
- package/dist/entities/user_entity/profile.entity.d.ts +9 -0
- package/dist/entities/user_entity/profile.entity.js +56 -0
- package/dist/entities/user_entity/profile.entity.js.map +1 -0
- package/dist/entities/user_entity/role.entity.d.ts +5 -0
- package/dist/entities/user_entity/role.entity.js +36 -0
- package/dist/entities/user_entity/role.entity.js.map +1 -0
- package/dist/entities/user_entity/user.entity.d.ts +28 -0
- package/dist/entities/user_entity/user.entity.js +160 -0
- package/dist/entities/user_entity/user.entity.js.map +1 -0
- package/justfile +0 -1
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
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;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.User = void 0;
|
|
13
|
+
const base_entity_1 = require("../../common/database/base.entity");
|
|
14
|
+
const typeorm_1 = require("typeorm");
|
|
15
|
+
const class_transformer_1 = require("class-transformer");
|
|
16
|
+
const profile_entity_1 = require("../profile.entity");
|
|
17
|
+
const role_entity_1 = require("../role.entity");
|
|
18
|
+
const tag_entity_1 = require("./../tag.entity");
|
|
19
|
+
const user_email_relation_entity_1 = require("./../thirdparty/user-email-relation.entity");
|
|
20
|
+
const push_token_entity_1 = require("./../notifications/push-token.entity");
|
|
21
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
22
|
+
const group_entity_1 = require("../group.entity");
|
|
23
|
+
const menu_permissions_entity_1 = require("../menu-permissions.entity");
|
|
24
|
+
let User = class User extends base_entity_1.BaseEntity {
|
|
25
|
+
username;
|
|
26
|
+
email;
|
|
27
|
+
bio;
|
|
28
|
+
avatar;
|
|
29
|
+
hash;
|
|
30
|
+
twoFactorSecret;
|
|
31
|
+
isTwoFactorEnabled;
|
|
32
|
+
phone;
|
|
33
|
+
isVerified;
|
|
34
|
+
lastLogin;
|
|
35
|
+
profile;
|
|
36
|
+
roles;
|
|
37
|
+
tags;
|
|
38
|
+
pushTokens;
|
|
39
|
+
emailRelations;
|
|
40
|
+
groups;
|
|
41
|
+
menuPermissions;
|
|
42
|
+
get name() {
|
|
43
|
+
return `${this.profile?.firstName ?? ''} ${this.profile?.lastName ?? ''}`.trim();
|
|
44
|
+
}
|
|
45
|
+
};
|
|
46
|
+
exports.User = User;
|
|
47
|
+
__decorate([
|
|
48
|
+
(0, swagger_1.ApiProperty)({ type: String, description: 'Unique username' }),
|
|
49
|
+
(0, typeorm_1.Column)({ unique: true }),
|
|
50
|
+
__metadata("design:type", String)
|
|
51
|
+
], User.prototype, "username", void 0);
|
|
52
|
+
__decorate([
|
|
53
|
+
(0, swagger_1.ApiProperty)({ type: String, description: 'Unique email address' }),
|
|
54
|
+
(0, typeorm_1.Column)({ unique: true }),
|
|
55
|
+
__metadata("design:type", String)
|
|
56
|
+
], User.prototype, "email", void 0);
|
|
57
|
+
__decorate([
|
|
58
|
+
(0, swagger_1.ApiProperty)({ type: String, description: 'User bio' }),
|
|
59
|
+
(0, typeorm_1.Column)({ type: "text" }),
|
|
60
|
+
__metadata("design:type", String)
|
|
61
|
+
], User.prototype, "bio", void 0);
|
|
62
|
+
__decorate([
|
|
63
|
+
(0, swagger_1.ApiProperty)({ type: String, description: 'User avatar URL' }),
|
|
64
|
+
(0, typeorm_1.Column)({ type: "text" }),
|
|
65
|
+
__metadata("design:type", String)
|
|
66
|
+
], User.prototype, "avatar", void 0);
|
|
67
|
+
__decorate([
|
|
68
|
+
(0, class_transformer_1.Exclude)(),
|
|
69
|
+
(0, swagger_1.ApiProperty)({ type: String, description: 'Password hash', writeOnly: true }),
|
|
70
|
+
(0, typeorm_1.Column)({ type: "text" }),
|
|
71
|
+
__metadata("design:type", String)
|
|
72
|
+
], User.prototype, "hash", void 0);
|
|
73
|
+
__decorate([
|
|
74
|
+
(0, class_transformer_1.Exclude)(),
|
|
75
|
+
(0, swagger_1.ApiProperty)({ type: String, description: 'Two-factor authentication secret', required: false, writeOnly: true }),
|
|
76
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
77
|
+
__metadata("design:type", String)
|
|
78
|
+
], User.prototype, "twoFactorSecret", void 0);
|
|
79
|
+
__decorate([
|
|
80
|
+
(0, swagger_1.ApiProperty)({ type: Boolean, description: 'Is two-factor authentication enabled', default: false }),
|
|
81
|
+
(0, typeorm_1.Column)({ default: false }),
|
|
82
|
+
__metadata("design:type", Boolean)
|
|
83
|
+
], User.prototype, "isTwoFactorEnabled", void 0);
|
|
84
|
+
__decorate([
|
|
85
|
+
(0, swagger_1.ApiProperty)({ type: String, description: 'User phone number', required: false }),
|
|
86
|
+
(0, typeorm_1.Column)({ unique: true }),
|
|
87
|
+
__metadata("design:type", String)
|
|
88
|
+
], User.prototype, "phone", void 0);
|
|
89
|
+
__decorate([
|
|
90
|
+
(0, swagger_1.ApiProperty)({ type: Boolean, description: 'Is user verified', default: false }),
|
|
91
|
+
(0, typeorm_1.Column)({ default: false }),
|
|
92
|
+
__metadata("design:type", Boolean)
|
|
93
|
+
], User.prototype, "isVerified", void 0);
|
|
94
|
+
__decorate([
|
|
95
|
+
(0, swagger_1.ApiProperty)({ type: Date, description: 'Last login timestamp', required: false }),
|
|
96
|
+
(0, typeorm_1.Column)({ type: "timestamp", nullable: true }),
|
|
97
|
+
__metadata("design:type", Date)
|
|
98
|
+
], User.prototype, "lastLogin", void 0);
|
|
99
|
+
__decorate([
|
|
100
|
+
(0, swagger_1.ApiProperty)({ type: () => profile_entity_1.Profile, description: 'User profile' }),
|
|
101
|
+
(0, typeorm_1.OneToOne)(() => profile_entity_1.Profile, {
|
|
102
|
+
onDelete: "CASCADE",
|
|
103
|
+
onUpdate: "CASCADE",
|
|
104
|
+
eager: true
|
|
105
|
+
}),
|
|
106
|
+
(0, typeorm_1.JoinColumn)(),
|
|
107
|
+
__metadata("design:type", profile_entity_1.Profile)
|
|
108
|
+
], User.prototype, "profile", void 0);
|
|
109
|
+
__decorate([
|
|
110
|
+
(0, swagger_1.ApiProperty)({ type: () => [role_entity_1.Role], description: 'Roles assigned to the user' }),
|
|
111
|
+
(0, typeorm_1.ManyToMany)(() => role_entity_1.Role, {
|
|
112
|
+
onDelete: "CASCADE",
|
|
113
|
+
onUpdate: "CASCADE",
|
|
114
|
+
}),
|
|
115
|
+
(0, typeorm_1.JoinTable)(),
|
|
116
|
+
__metadata("design:type", Array)
|
|
117
|
+
], User.prototype, "roles", void 0);
|
|
118
|
+
__decorate([
|
|
119
|
+
(0, swagger_1.ApiProperty)({ type: () => [tag_entity_1.Tag], description: 'Tags associated with the user' }),
|
|
120
|
+
(0, typeorm_1.OneToMany)(() => tag_entity_1.Tag, (tag) => tag.user),
|
|
121
|
+
__metadata("design:type", Array)
|
|
122
|
+
], User.prototype, "tags", void 0);
|
|
123
|
+
__decorate([
|
|
124
|
+
(0, swagger_1.ApiProperty)({ type: () => [push_token_entity_1.PushToken], description: 'Push tokens associated with the user' }),
|
|
125
|
+
(0, typeorm_1.OneToMany)(() => push_token_entity_1.PushToken, (pushToken) => pushToken.user),
|
|
126
|
+
__metadata("design:type", Array)
|
|
127
|
+
], User.prototype, "pushTokens", void 0);
|
|
128
|
+
__decorate([
|
|
129
|
+
(0, swagger_1.ApiProperty)({ type: () => [user_email_relation_entity_1.UserEmailRelation], description: 'Email relations associated with the user' }),
|
|
130
|
+
(0, typeorm_1.OneToMany)(() => user_email_relation_entity_1.UserEmailRelation, (relation) => relation.user),
|
|
131
|
+
__metadata("design:type", Array)
|
|
132
|
+
], User.prototype, "emailRelations", void 0);
|
|
133
|
+
__decorate([
|
|
134
|
+
(0, swagger_1.ApiProperty)({ type: () => [group_entity_1.Group], description: 'Groups assigned to the user' }),
|
|
135
|
+
(0, typeorm_1.ManyToMany)(() => group_entity_1.Group, {
|
|
136
|
+
onDelete: "CASCADE",
|
|
137
|
+
onUpdate: "CASCADE",
|
|
138
|
+
}),
|
|
139
|
+
(0, typeorm_1.JoinTable)(),
|
|
140
|
+
__metadata("design:type", Array)
|
|
141
|
+
], User.prototype, "groups", void 0);
|
|
142
|
+
__decorate([
|
|
143
|
+
(0, swagger_1.ApiProperty)({ type: () => menu_permissions_entity_1.MenuPermissions, description: 'Menu Permissions' }),
|
|
144
|
+
(0, typeorm_1.OneToOne)(() => menu_permissions_entity_1.MenuPermissions, {
|
|
145
|
+
onDelete: "CASCADE",
|
|
146
|
+
onUpdate: "CASCADE",
|
|
147
|
+
eager: true
|
|
148
|
+
}),
|
|
149
|
+
(0, typeorm_1.JoinColumn)(),
|
|
150
|
+
__metadata("design:type", menu_permissions_entity_1.MenuPermissions)
|
|
151
|
+
], User.prototype, "menuPermissions", void 0);
|
|
152
|
+
__decorate([
|
|
153
|
+
(0, swagger_1.ApiProperty)({ type: String, description: 'Full name of the user' }),
|
|
154
|
+
__metadata("design:type", String),
|
|
155
|
+
__metadata("design:paramtypes", [])
|
|
156
|
+
], User.prototype, "name", null);
|
|
157
|
+
exports.User = User = __decorate([
|
|
158
|
+
(0, typeorm_1.Entity)()
|
|
159
|
+
], User);
|
|
160
|
+
//# sourceMappingURL=user.entity.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"user.entity.js","sourceRoot":"","sources":["../../../src/entities/user_entity/user.entity.ts"],"names":[],"mappings":"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"}
|
package/justfile
CHANGED