easywork-common-lib 1.0.823 → 1.0.825
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/entities/helpers/index.d.ts +1 -1
- package/dist/entities/helpers/index.js +1 -1
- package/dist/entities/helpers/index.js.map +1 -1
- package/dist/entities/helpers/tools2/event_crm.entity.d.ts +23 -0
- package/dist/entities/helpers/tools2/event_crm.entity.js +166 -0
- package/dist/entities/helpers/tools2/event_crm.entity.js.map +1 -0
- package/dist/entities/helpers/tools2/index.d.ts +2 -0
- package/dist/entities/helpers/tools2/index.js +19 -0
- package/dist/entities/helpers/tools2/index.js.map +1 -0
- package/dist/entities/helpers/tools2/task_crm.entity.d.ts +34 -0
- package/dist/entities/helpers/tools2/task_crm.entity.js +242 -0
- package/dist/entities/helpers/tools2/task_crm.entity.js.map +1 -0
- package/dist/entities/tools/calendar/event.entity.d.ts +4 -4
- package/dist/entities/tools/calendar/event.entity.js +32 -32
- package/dist/entities/tools/calendar/event.entity.js.map +1 -1
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
- package/dist/entities/helpers/user/access_history.entity.d.ts +0 -9
- package/dist/entities/helpers/user/access_history.entity.js +0 -58
- package/dist/entities/helpers/user/access_history.entity.js.map +0 -1
- package/dist/entities/third-party/email-config.entity.d.ts +0 -14
- package/dist/entities/third-party/email-config.entity.js +0 -76
- package/dist/entities/third-party/email-config.entity.js.map +0 -1
- package/dist/entities/third-party/email.entity.d.ts +0 -17
- package/dist/entities/third-party/email.entity.js +0 -79
- package/dist/entities/third-party/email.entity.js.map +0 -1
- package/dist/entities/third-party/google-webhooks-config.entity.d.ts +0 -14
- package/dist/entities/third-party/google-webhooks-config.entity.js +0 -72
- package/dist/entities/third-party/google-webhooks-config.entity.js.map +0 -1
- package/dist/entities/third-party/oauth-v2.entity.d.ts +0 -22
- package/dist/entities/third-party/oauth-v2.entity.js +0 -75
- package/dist/entities/third-party/oauth-v2.entity.js.map +0 -1
- package/dist/entities/third-party/oauth.entity.d.ts +0 -21
- package/dist/entities/third-party/oauth.entity.js +0 -100
- package/dist/entities/third-party/oauth.entity.js.map +0 -1
- package/dist/entities/third-party/service.entity.d.ts +0 -8
- package/dist/entities/third-party/service.entity.js +0 -38
- package/dist/entities/third-party/service.entity.js.map +0 -1
- package/dist/entities/third-party/user-email-relation.entity.d.ts +0 -7
- package/dist/entities/third-party/user-email-relation.entity.js +0 -35
- package/dist/entities/third-party/user-email-relation.entity.js.map +0 -1
|
@@ -16,7 +16,7 @@ const swagger_1 = require("@nestjs/swagger");
|
|
|
16
16
|
const base_entity_1 = require("../../../common/database/base.entity");
|
|
17
17
|
const common_1 = require("../../../common");
|
|
18
18
|
const user_entity_1 = require("../../user.entity");
|
|
19
|
-
const
|
|
19
|
+
const tools2_1 = require("../../helpers/tools2");
|
|
20
20
|
let EventCalendar = class EventCalendar extends base_entity_1.EntityBase {
|
|
21
21
|
name;
|
|
22
22
|
description;
|
|
@@ -40,20 +40,20 @@ let EventCalendar = class EventCalendar extends base_entity_1.EntityBase {
|
|
|
40
40
|
};
|
|
41
41
|
exports.EventCalendar = EventCalendar;
|
|
42
42
|
__decorate([
|
|
43
|
-
(0, swagger_1.ApiProperty)({ type: String, description:
|
|
43
|
+
(0, swagger_1.ApiProperty)({ type: String, description: 'Name of the event', minLength: 3 }),
|
|
44
44
|
(0, class_validator_1.MinLength)(3),
|
|
45
45
|
(0, typeorm_1.Column)({ unique: false, nullable: false }),
|
|
46
46
|
__metadata("design:type", String)
|
|
47
47
|
], EventCalendar.prototype, "name", void 0);
|
|
48
48
|
__decorate([
|
|
49
|
-
(0, swagger_1.ApiProperty)({ type: String, description:
|
|
50
|
-
(0, typeorm_1.Column)({ type:
|
|
49
|
+
(0, swagger_1.ApiProperty)({ type: String, description: 'Description of the event' }),
|
|
50
|
+
(0, typeorm_1.Column)({ type: 'text' }),
|
|
51
51
|
__metadata("design:type", String)
|
|
52
52
|
], EventCalendar.prototype, "description", void 0);
|
|
53
53
|
__decorate([
|
|
54
54
|
(0, swagger_1.ApiProperty)({
|
|
55
55
|
type: Date,
|
|
56
|
-
description:
|
|
56
|
+
description: 'Start time of the event',
|
|
57
57
|
required: false,
|
|
58
58
|
}),
|
|
59
59
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
@@ -62,7 +62,7 @@ __decorate([
|
|
|
62
62
|
__decorate([
|
|
63
63
|
(0, swagger_1.ApiProperty)({
|
|
64
64
|
type: Date,
|
|
65
|
-
description:
|
|
65
|
+
description: 'End time of the event',
|
|
66
66
|
required: false,
|
|
67
67
|
}),
|
|
68
68
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
@@ -71,11 +71,11 @@ __decorate([
|
|
|
71
71
|
__decorate([
|
|
72
72
|
(0, swagger_1.ApiProperty)({
|
|
73
73
|
enum: common_1.EventRepeatMode,
|
|
74
|
-
description:
|
|
74
|
+
description: 'Retición',
|
|
75
75
|
default: common_1.EventRepeatMode.NONE,
|
|
76
76
|
}),
|
|
77
77
|
(0, typeorm_1.Column)({
|
|
78
|
-
type:
|
|
78
|
+
type: 'enum',
|
|
79
79
|
enum: common_1.EventRepeatMode,
|
|
80
80
|
default: common_1.EventRepeatMode.NONE,
|
|
81
81
|
}),
|
|
@@ -84,48 +84,48 @@ __decorate([
|
|
|
84
84
|
__decorate([
|
|
85
85
|
(0, swagger_1.ApiProperty)({
|
|
86
86
|
type: () => [user_entity_1.User],
|
|
87
|
-
description:
|
|
87
|
+
description: 'Participants in the event',
|
|
88
88
|
required: false,
|
|
89
89
|
}),
|
|
90
90
|
(0, typeorm_1.ManyToMany)(() => user_entity_1.User, {
|
|
91
|
-
onDelete:
|
|
92
|
-
onUpdate:
|
|
91
|
+
onDelete: 'CASCADE',
|
|
92
|
+
onUpdate: 'CASCADE',
|
|
93
93
|
}),
|
|
94
94
|
(0, typeorm_1.JoinTable)(),
|
|
95
95
|
__metadata("design:type", Array)
|
|
96
96
|
], EventCalendar.prototype, "participants", void 0);
|
|
97
97
|
__decorate([
|
|
98
|
-
(0, swagger_1.ApiProperty)({ type: Date, description:
|
|
98
|
+
(0, swagger_1.ApiProperty)({ type: Date, description: 'Reminder time', required: false }),
|
|
99
99
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
100
100
|
__metadata("design:type", Date)
|
|
101
101
|
], EventCalendar.prototype, "reminder", void 0);
|
|
102
102
|
__decorate([
|
|
103
|
-
(0, swagger_1.ApiProperty)({ type: String, description:
|
|
103
|
+
(0, swagger_1.ApiProperty)({ type: String, description: 'Color of the event' }),
|
|
104
104
|
(0, typeorm_1.Column)({ type: String }),
|
|
105
105
|
__metadata("design:type", String)
|
|
106
106
|
], EventCalendar.prototype, "color", void 0);
|
|
107
107
|
__decorate([
|
|
108
108
|
(0, swagger_1.ApiProperty)({
|
|
109
109
|
type: String,
|
|
110
|
-
description:
|
|
110
|
+
description: 'User availability during the event',
|
|
111
111
|
}),
|
|
112
112
|
(0, typeorm_1.Column)({ type: String }),
|
|
113
113
|
__metadata("design:type", String)
|
|
114
114
|
], EventCalendar.prototype, "availability", void 0);
|
|
115
115
|
__decorate([
|
|
116
|
-
(0, swagger_1.ApiProperty)({ type: Boolean, description:
|
|
116
|
+
(0, swagger_1.ApiProperty)({ type: Boolean, description: '¿Private?', default: false }),
|
|
117
117
|
(0, typeorm_1.Column)({ default: false }),
|
|
118
118
|
__metadata("design:type", Boolean)
|
|
119
119
|
], EventCalendar.prototype, "private", void 0);
|
|
120
120
|
__decorate([
|
|
121
|
-
(0, swagger_1.ApiProperty)({ type: Boolean, description:
|
|
121
|
+
(0, swagger_1.ApiProperty)({ type: Boolean, description: 'Important?', default: false }),
|
|
122
122
|
(0, typeorm_1.Column)({ default: false }),
|
|
123
123
|
__metadata("design:type", Boolean)
|
|
124
124
|
], EventCalendar.prototype, "important", void 0);
|
|
125
125
|
__decorate([
|
|
126
126
|
(0, swagger_1.ApiProperty)({
|
|
127
127
|
type: Boolean,
|
|
128
|
-
description:
|
|
128
|
+
description: 'Event during all Day?',
|
|
129
129
|
default: false,
|
|
130
130
|
}),
|
|
131
131
|
(0, typeorm_1.Column)({ default: false }),
|
|
@@ -134,7 +134,7 @@ __decorate([
|
|
|
134
134
|
__decorate([
|
|
135
135
|
(0, swagger_1.ApiProperty)({
|
|
136
136
|
type: String,
|
|
137
|
-
description:
|
|
137
|
+
description: 'Google event id',
|
|
138
138
|
required: false,
|
|
139
139
|
}),
|
|
140
140
|
(0, typeorm_1.Column)({ type: String, nullable: true }),
|
|
@@ -143,7 +143,7 @@ __decorate([
|
|
|
143
143
|
__decorate([
|
|
144
144
|
(0, swagger_1.ApiProperty)({
|
|
145
145
|
type: String,
|
|
146
|
-
description:
|
|
146
|
+
description: 'Calendar Id',
|
|
147
147
|
required: false,
|
|
148
148
|
}),
|
|
149
149
|
(0, typeorm_1.Column)({ type: String, nullable: true }),
|
|
@@ -152,12 +152,12 @@ __decorate([
|
|
|
152
152
|
__decorate([
|
|
153
153
|
(0, swagger_1.ApiProperty)({
|
|
154
154
|
type: () => user_entity_1.User,
|
|
155
|
-
description:
|
|
155
|
+
description: 'User who created the event',
|
|
156
156
|
required: false,
|
|
157
157
|
}),
|
|
158
158
|
(0, typeorm_1.ManyToOne)(() => user_entity_1.User, {
|
|
159
|
-
onDelete:
|
|
160
|
-
onUpdate:
|
|
159
|
+
onDelete: 'SET NULL',
|
|
160
|
+
onUpdate: 'CASCADE',
|
|
161
161
|
nullable: true,
|
|
162
162
|
}),
|
|
163
163
|
(0, typeorm_1.JoinColumn)(),
|
|
@@ -166,12 +166,12 @@ __decorate([
|
|
|
166
166
|
__decorate([
|
|
167
167
|
(0, swagger_1.ApiProperty)({
|
|
168
168
|
type: () => user_entity_1.User,
|
|
169
|
-
description:
|
|
169
|
+
description: 'User who modified the event',
|
|
170
170
|
required: false,
|
|
171
171
|
}),
|
|
172
172
|
(0, typeorm_1.ManyToOne)(() => user_entity_1.User, {
|
|
173
|
-
onDelete:
|
|
174
|
-
onUpdate:
|
|
173
|
+
onDelete: 'SET NULL',
|
|
174
|
+
onUpdate: 'CASCADE',
|
|
175
175
|
nullable: true,
|
|
176
176
|
}),
|
|
177
177
|
(0, typeorm_1.JoinColumn)(),
|
|
@@ -179,20 +179,20 @@ __decorate([
|
|
|
179
179
|
], EventCalendar.prototype, "modifiedBy", void 0);
|
|
180
180
|
__decorate([
|
|
181
181
|
(0, swagger_1.ApiProperty)({
|
|
182
|
-
type: () => [
|
|
183
|
-
description:
|
|
182
|
+
type: () => [tools2_1.EventCRM],
|
|
183
|
+
description: 'CRM entries associated with the event',
|
|
184
184
|
required: false,
|
|
185
185
|
}),
|
|
186
|
-
(0, typeorm_1.OneToMany)(() =>
|
|
187
|
-
onDelete:
|
|
188
|
-
onUpdate:
|
|
186
|
+
(0, typeorm_1.OneToMany)(() => tools2_1.EventCRM, eventCRM => eventCRM.event, {
|
|
187
|
+
onDelete: 'CASCADE',
|
|
188
|
+
onUpdate: 'CASCADE',
|
|
189
189
|
}),
|
|
190
190
|
__metadata("design:type", Array)
|
|
191
191
|
], EventCalendar.prototype, "crm", void 0);
|
|
192
192
|
__decorate([
|
|
193
193
|
(0, swagger_1.ApiProperty)({
|
|
194
194
|
type: String,
|
|
195
|
-
description:
|
|
195
|
+
description: 'Event time zone',
|
|
196
196
|
required: false,
|
|
197
197
|
}),
|
|
198
198
|
(0, typeorm_1.Column)({ type: String, nullable: true }),
|
|
@@ -201,7 +201,7 @@ __decorate([
|
|
|
201
201
|
__decorate([
|
|
202
202
|
(0, swagger_1.ApiProperty)({
|
|
203
203
|
type: String,
|
|
204
|
-
description:
|
|
204
|
+
description: 'Event localization',
|
|
205
205
|
required: false,
|
|
206
206
|
}),
|
|
207
207
|
(0, typeorm_1.Column)({ type: String, nullable: true }),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"event.entity.js","sourceRoot":"","sources":["../../../../src/entities/tools/calendar/event.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA4C;AAC5C,
|
|
1
|
+
{"version":3,"file":"event.entity.js","sourceRoot":"","sources":["../../../../src/entities/tools/calendar/event.entity.ts"],"names":[],"mappings":"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"}
|