easywork-common-lib 1.0.500 → 1.0.501
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/.gitattributes +2 -2
- package/.github/workflows/npm-publish.yml +33 -33
- package/.vscode/settings.json +12 -12
- package/dist/common/enums/tools.enum.js.map +1 -1
- package/dist/entities/tools/calendar/event.entity.js +54 -19
- package/dist/entities/tools/calendar/event.entity.js.map +1 -1
- package/dist/entities/tools/task.entity.js +115 -29
- package/dist/entities/tools/task.entity.js.map +1 -1
- package/dist/grpc/drive/drive.proto +181 -181
- package/justfile +8 -8
- package/package.json +45 -45
- package/scripts/bump.sh +5 -5
- package/test.bat +15 -15
- package/tsconfig.build.json +4 -4
- package/tsconfig.json +25 -25
- package/tsconfig.tsbuildinfo +1 -1
package/.gitattributes
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
# Auto detect text files and perform LF normalization
|
|
2
|
-
* text=auto
|
|
1
|
+
# Auto detect text files and perform LF normalization
|
|
2
|
+
* text=auto
|
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
|
|
2
|
-
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
|
|
3
|
-
|
|
4
|
-
name: Node.js Package
|
|
5
|
-
|
|
6
|
-
on:
|
|
7
|
-
release:
|
|
8
|
-
types: [created]
|
|
9
|
-
|
|
10
|
-
jobs:
|
|
11
|
-
build:
|
|
12
|
-
runs-on: ubuntu-latest
|
|
13
|
-
steps:
|
|
14
|
-
- uses: actions/checkout@v4
|
|
15
|
-
- uses: actions/setup-node@v4
|
|
16
|
-
with:
|
|
17
|
-
node-version: 20
|
|
18
|
-
- run: npm ci
|
|
19
|
-
- run: npm test
|
|
20
|
-
|
|
21
|
-
publish-npm:
|
|
22
|
-
needs: build
|
|
23
|
-
runs-on: ubuntu-latest
|
|
24
|
-
steps:
|
|
25
|
-
- uses: actions/checkout@v4
|
|
26
|
-
- uses: actions/setup-node@v4
|
|
27
|
-
with:
|
|
28
|
-
node-version: 20
|
|
29
|
-
registry-url: https://registry.npmjs.org/
|
|
30
|
-
- run: npm ci
|
|
31
|
-
- run: npm publish
|
|
32
|
-
env:
|
|
33
|
-
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
|
|
1
|
+
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
|
|
2
|
+
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
|
|
3
|
+
|
|
4
|
+
name: Node.js Package
|
|
5
|
+
|
|
6
|
+
on:
|
|
7
|
+
release:
|
|
8
|
+
types: [created]
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
build:
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
steps:
|
|
14
|
+
- uses: actions/checkout@v4
|
|
15
|
+
- uses: actions/setup-node@v4
|
|
16
|
+
with:
|
|
17
|
+
node-version: 20
|
|
18
|
+
- run: npm ci
|
|
19
|
+
- run: npm test
|
|
20
|
+
|
|
21
|
+
publish-npm:
|
|
22
|
+
needs: build
|
|
23
|
+
runs-on: ubuntu-latest
|
|
24
|
+
steps:
|
|
25
|
+
- uses: actions/checkout@v4
|
|
26
|
+
- uses: actions/setup-node@v4
|
|
27
|
+
with:
|
|
28
|
+
node-version: 20
|
|
29
|
+
registry-url: https://registry.npmjs.org/
|
|
30
|
+
- run: npm ci
|
|
31
|
+
- run: npm publish
|
|
32
|
+
env:
|
|
33
|
+
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
|
package/.vscode/settings.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
{
|
|
2
|
-
"autoBarrel.language.defaultLanguage": "TypeScript",
|
|
3
|
-
"autoBarrel.files.disableRecursiveBarrelling": false,
|
|
4
|
-
"autoBarrel.files.includeExtensionOnExport": ["ts", "tsx", "vue"],
|
|
5
|
-
"autoBarrel.files.ignoreFilePathPatternOnExport": ["**/*.spec.*", "**/*.test.*"],
|
|
6
|
-
"autoBarrel.files.keepExtensionOnExport": false,
|
|
7
|
-
"autoBarrel.files.detectExportsInFiles": false,
|
|
8
|
-
"autoBarrel.files.exportDefaultFilename": "filename",
|
|
9
|
-
"autoBarrel.formatting.excludeSemiColonAtEndOfLine": false,
|
|
10
|
-
"autoBarrel.formatting.useSingleQuotes": true,
|
|
11
|
-
"autoBarrel.formatting.endOfLine": "lf",
|
|
12
|
-
"autoBarrel.formatting.insertFinalNewline": true,
|
|
1
|
+
{
|
|
2
|
+
"autoBarrel.language.defaultLanguage": "TypeScript",
|
|
3
|
+
"autoBarrel.files.disableRecursiveBarrelling": false,
|
|
4
|
+
"autoBarrel.files.includeExtensionOnExport": ["ts", "tsx", "vue"],
|
|
5
|
+
"autoBarrel.files.ignoreFilePathPatternOnExport": ["**/*.spec.*", "**/*.test.*"],
|
|
6
|
+
"autoBarrel.files.keepExtensionOnExport": false,
|
|
7
|
+
"autoBarrel.files.detectExportsInFiles": false,
|
|
8
|
+
"autoBarrel.files.exportDefaultFilename": "filename",
|
|
9
|
+
"autoBarrel.formatting.excludeSemiColonAtEndOfLine": false,
|
|
10
|
+
"autoBarrel.formatting.useSingleQuotes": true,
|
|
11
|
+
"autoBarrel.formatting.endOfLine": "lf",
|
|
12
|
+
"autoBarrel.formatting.insertFinalNewline": true,
|
|
13
13
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tools.enum.js","sourceRoot":"","sources":["../../../src/common/enums/tools.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,UAKX;AALD,WAAY,UAAU;
|
|
1
|
+
{"version":3,"file":"tools.enum.js","sourceRoot":"","sources":["../../../src/common/enums/tools.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,UAKX;AALD,WAAY,UAAU;IACpB,iCAAmB,CAAA;IACnB,iCAAmB,CAAA;IACnB,qCAAuB,CAAA;IACvB,+CAAiC,CAAA;AACnC,CAAC,EALW,UAAU,0BAAV,UAAU,QAKrB;AAED,IAAY,WAKX;AALD,WAAY,WAAW;IACrB,kCAAmB,CAAA;IACnB,gCAAiB,CAAA;IACjB,4BAAa,CAAA;IACb,kCAAmB,CAAA;AACrB,CAAC,EALW,WAAW,2BAAX,WAAW,QAKtB;AAED,IAAY,YAMX;AAND,WAAY,YAAY;IACtB,mCAAmB,CAAA;IACnB,iCAAiB,CAAA;IACjB,6BAAa,CAAA;IACb,mCAAmB,CAAA;IACnB,6BAAa,CAAA;AACf,CAAC,EANW,YAAY,4BAAZ,YAAY,QAMvB;AAED,IAAY,eAMX;AAND,WAAY,eAAe;IACzB,gCAAa,CAAA;IACb,oCAAiB,CAAA;IACjB,sCAAmB,CAAA;IACnB,sCAAmB,CAAA;IACnB,kCAAe,CAAA;AACjB,CAAC,EANW,eAAe,+BAAf,eAAe,QAM1B"}
|
|
@@ -37,41 +37,53 @@ let EventCalendar = class EventCalendar extends base_entity_1.EntityBase {
|
|
|
37
37
|
};
|
|
38
38
|
exports.EventCalendar = EventCalendar;
|
|
39
39
|
__decorate([
|
|
40
|
-
(0, swagger_1.ApiProperty)({ type: String, description:
|
|
40
|
+
(0, swagger_1.ApiProperty)({ type: String, description: "Name of the event", minLength: 3 }),
|
|
41
41
|
(0, class_validator_1.MinLength)(3),
|
|
42
42
|
(0, typeorm_1.Column)({ unique: false, nullable: false }),
|
|
43
43
|
__metadata("design:type", String)
|
|
44
44
|
], EventCalendar.prototype, "name", void 0);
|
|
45
45
|
__decorate([
|
|
46
|
-
(0, swagger_1.ApiProperty)({ type: String, description:
|
|
46
|
+
(0, swagger_1.ApiProperty)({ type: String, description: "Description of the event" }),
|
|
47
47
|
(0, typeorm_1.Column)({ type: "text" }),
|
|
48
48
|
__metadata("design:type", String)
|
|
49
49
|
], EventCalendar.prototype, "description", void 0);
|
|
50
50
|
__decorate([
|
|
51
|
-
(0, swagger_1.ApiProperty)({
|
|
51
|
+
(0, swagger_1.ApiProperty)({
|
|
52
|
+
type: Date,
|
|
53
|
+
description: "Start time of the event",
|
|
54
|
+
required: false,
|
|
55
|
+
}),
|
|
52
56
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
53
57
|
__metadata("design:type", Date)
|
|
54
58
|
], EventCalendar.prototype, "startTime", void 0);
|
|
55
59
|
__decorate([
|
|
56
|
-
(0, swagger_1.ApiProperty)({
|
|
60
|
+
(0, swagger_1.ApiProperty)({
|
|
61
|
+
type: Date,
|
|
62
|
+
description: "End time of the event",
|
|
63
|
+
required: false,
|
|
64
|
+
}),
|
|
57
65
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
58
66
|
__metadata("design:type", Date)
|
|
59
67
|
], EventCalendar.prototype, "endTime", void 0);
|
|
60
68
|
__decorate([
|
|
61
69
|
(0, swagger_1.ApiProperty)({
|
|
62
70
|
enum: common_1.EventRepeatMode,
|
|
63
|
-
description:
|
|
64
|
-
default: common_1.EventRepeatMode.NONE
|
|
71
|
+
description: "Retición",
|
|
72
|
+
default: common_1.EventRepeatMode.NONE,
|
|
65
73
|
}),
|
|
66
74
|
(0, typeorm_1.Column)({
|
|
67
75
|
type: "enum",
|
|
68
76
|
enum: common_1.EventRepeatMode,
|
|
69
|
-
default: common_1.EventRepeatMode.NONE
|
|
77
|
+
default: common_1.EventRepeatMode.NONE,
|
|
70
78
|
}),
|
|
71
79
|
__metadata("design:type", String)
|
|
72
80
|
], EventCalendar.prototype, "repeat", void 0);
|
|
73
81
|
__decorate([
|
|
74
|
-
(0, swagger_1.ApiProperty)({
|
|
82
|
+
(0, swagger_1.ApiProperty)({
|
|
83
|
+
type: () => [user_entity_1.User],
|
|
84
|
+
description: "Participants in the event",
|
|
85
|
+
required: false,
|
|
86
|
+
}),
|
|
75
87
|
(0, typeorm_1.ManyToMany)(() => user_entity_1.User, {
|
|
76
88
|
onDelete: "CASCADE",
|
|
77
89
|
onUpdate: "CASCADE",
|
|
@@ -80,42 +92,57 @@ __decorate([
|
|
|
80
92
|
__metadata("design:type", Array)
|
|
81
93
|
], EventCalendar.prototype, "participants", void 0);
|
|
82
94
|
__decorate([
|
|
83
|
-
(0, swagger_1.ApiProperty)({ type: Date, description:
|
|
95
|
+
(0, swagger_1.ApiProperty)({ type: Date, description: "Reminder time", required: false }),
|
|
84
96
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
85
97
|
__metadata("design:type", Date)
|
|
86
98
|
], EventCalendar.prototype, "reminder", void 0);
|
|
87
99
|
__decorate([
|
|
88
|
-
(0, swagger_1.ApiProperty)({ type: String, description:
|
|
100
|
+
(0, swagger_1.ApiProperty)({ type: String, description: "Color of the event" }),
|
|
89
101
|
(0, typeorm_1.Column)({ type: String }),
|
|
90
102
|
__metadata("design:type", String)
|
|
91
103
|
], EventCalendar.prototype, "color", void 0);
|
|
92
104
|
__decorate([
|
|
93
|
-
(0, swagger_1.ApiProperty)({
|
|
105
|
+
(0, swagger_1.ApiProperty)({
|
|
106
|
+
type: String,
|
|
107
|
+
description: "User availability during the event",
|
|
108
|
+
}),
|
|
94
109
|
(0, typeorm_1.Column)({ type: String }),
|
|
95
110
|
__metadata("design:type", String)
|
|
96
111
|
], EventCalendar.prototype, "availability", void 0);
|
|
97
112
|
__decorate([
|
|
98
|
-
(0, swagger_1.ApiProperty)({ type: Boolean, description:
|
|
113
|
+
(0, swagger_1.ApiProperty)({ type: Boolean, description: "¿Private?", default: false }),
|
|
99
114
|
(0, typeorm_1.Column)({ default: false }),
|
|
100
115
|
__metadata("design:type", Boolean)
|
|
101
116
|
], EventCalendar.prototype, "private", void 0);
|
|
102
117
|
__decorate([
|
|
103
|
-
(0, swagger_1.ApiProperty)({ type: Boolean, description:
|
|
118
|
+
(0, swagger_1.ApiProperty)({ type: Boolean, description: "Important?", default: false }),
|
|
104
119
|
(0, typeorm_1.Column)({ default: false }),
|
|
105
120
|
__metadata("design:type", Boolean)
|
|
106
121
|
], EventCalendar.prototype, "important", void 0);
|
|
107
122
|
__decorate([
|
|
108
|
-
(0, swagger_1.ApiProperty)({
|
|
123
|
+
(0, swagger_1.ApiProperty)({
|
|
124
|
+
type: Boolean,
|
|
125
|
+
description: "Event during all Day?",
|
|
126
|
+
default: false,
|
|
127
|
+
}),
|
|
109
128
|
(0, typeorm_1.Column)({ default: false }),
|
|
110
129
|
__metadata("design:type", Boolean)
|
|
111
130
|
], EventCalendar.prototype, "allDay", void 0);
|
|
112
131
|
__decorate([
|
|
113
|
-
(0, swagger_1.ApiProperty)({
|
|
132
|
+
(0, swagger_1.ApiProperty)({
|
|
133
|
+
type: String,
|
|
134
|
+
description: "Google event id",
|
|
135
|
+
required: false,
|
|
136
|
+
}),
|
|
114
137
|
(0, typeorm_1.Column)({ type: String, nullable: true }),
|
|
115
138
|
__metadata("design:type", String)
|
|
116
139
|
], EventCalendar.prototype, "googleId", void 0);
|
|
117
140
|
__decorate([
|
|
118
|
-
(0, swagger_1.ApiProperty)({
|
|
141
|
+
(0, swagger_1.ApiProperty)({
|
|
142
|
+
type: () => user_entity_1.User,
|
|
143
|
+
description: "User who created the event",
|
|
144
|
+
required: false,
|
|
145
|
+
}),
|
|
119
146
|
(0, typeorm_1.ManyToOne)(() => user_entity_1.User, {
|
|
120
147
|
onDelete: "SET NULL",
|
|
121
148
|
onUpdate: "CASCADE",
|
|
@@ -125,7 +152,11 @@ __decorate([
|
|
|
125
152
|
__metadata("design:type", user_entity_1.User)
|
|
126
153
|
], EventCalendar.prototype, "createdBy", void 0);
|
|
127
154
|
__decorate([
|
|
128
|
-
(0, swagger_1.ApiProperty)({
|
|
155
|
+
(0, swagger_1.ApiProperty)({
|
|
156
|
+
type: () => user_entity_1.User,
|
|
157
|
+
description: "User who modified the event",
|
|
158
|
+
required: false,
|
|
159
|
+
}),
|
|
129
160
|
(0, typeorm_1.ManyToOne)(() => user_entity_1.User, {
|
|
130
161
|
onDelete: "SET NULL",
|
|
131
162
|
onUpdate: "CASCADE",
|
|
@@ -135,8 +166,12 @@ __decorate([
|
|
|
135
166
|
__metadata("design:type", user_entity_1.User)
|
|
136
167
|
], EventCalendar.prototype, "modifiedBy", void 0);
|
|
137
168
|
__decorate([
|
|
138
|
-
(0, swagger_1.ApiProperty)({
|
|
139
|
-
|
|
169
|
+
(0, swagger_1.ApiProperty)({
|
|
170
|
+
type: () => [tools_1.EventCRM],
|
|
171
|
+
description: "CRM entries associated with the event",
|
|
172
|
+
required: false,
|
|
173
|
+
}),
|
|
174
|
+
(0, typeorm_1.OneToMany)(() => tools_1.EventCRM, (eventCRM) => eventCRM.event, {
|
|
140
175
|
onDelete: "CASCADE",
|
|
141
176
|
onUpdate: "CASCADE",
|
|
142
177
|
}),
|
|
@@ -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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"}
|
|
@@ -49,12 +49,16 @@ let Task = class Task extends base_entity_1.EntityBase {
|
|
|
49
49
|
};
|
|
50
50
|
exports.Task = Task;
|
|
51
51
|
__decorate([
|
|
52
|
-
(0, swagger_1.ApiProperty)({
|
|
52
|
+
(0, swagger_1.ApiProperty)({
|
|
53
|
+
type: Number,
|
|
54
|
+
description: "Bitrix ID of the policy",
|
|
55
|
+
required: false,
|
|
56
|
+
}),
|
|
53
57
|
(0, typeorm_1.Column)({ name: "id_bitrix", nullable: true }),
|
|
54
58
|
__metadata("design:type", Number)
|
|
55
59
|
], Task.prototype, "idBitrix", void 0);
|
|
56
60
|
__decorate([
|
|
57
|
-
(0, swagger_1.ApiProperty)({ type: String, description:
|
|
61
|
+
(0, swagger_1.ApiProperty)({ type: String, description: "Name of the task", minLength: 3 }),
|
|
58
62
|
(0, class_validator_1.MinLength)(3),
|
|
59
63
|
(0, typeorm_1.Column)({ unique: false, nullable: false }),
|
|
60
64
|
__metadata("design:type", String)
|
|
@@ -65,70 +69,114 @@ __decorate([
|
|
|
65
69
|
__metadata("design:type", Number)
|
|
66
70
|
], Task.prototype, "number", void 0);
|
|
67
71
|
__decorate([
|
|
68
|
-
(0, swagger_1.ApiProperty)({
|
|
72
|
+
(0, swagger_1.ApiProperty)({
|
|
73
|
+
type: String,
|
|
74
|
+
description: "Description of the task",
|
|
75
|
+
required: false,
|
|
76
|
+
}),
|
|
69
77
|
(0, typeorm_1.Column)({ type: "text", nullable: true }),
|
|
70
78
|
__metadata("design:type", String)
|
|
71
79
|
], Task.prototype, "description", void 0);
|
|
72
80
|
__decorate([
|
|
73
|
-
(0, swagger_1.ApiProperty)({
|
|
81
|
+
(0, swagger_1.ApiProperty)({
|
|
82
|
+
type: Date,
|
|
83
|
+
description: "Deadline of the task",
|
|
84
|
+
required: false,
|
|
85
|
+
}),
|
|
74
86
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
75
87
|
__metadata("design:type", Date)
|
|
76
88
|
], Task.prototype, "deadline", void 0);
|
|
77
89
|
__decorate([
|
|
78
|
-
(0, swagger_1.ApiProperty)({
|
|
90
|
+
(0, swagger_1.ApiProperty)({
|
|
91
|
+
type: Date,
|
|
92
|
+
description: "Start time of the task",
|
|
93
|
+
required: false,
|
|
94
|
+
}),
|
|
79
95
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
80
96
|
__metadata("design:type", Date)
|
|
81
97
|
], Task.prototype, "startTime", void 0);
|
|
82
98
|
__decorate([
|
|
83
|
-
(0, swagger_1.ApiProperty)({
|
|
99
|
+
(0, swagger_1.ApiProperty)({
|
|
100
|
+
type: Date,
|
|
101
|
+
description: "Completion time of the task",
|
|
102
|
+
required: false,
|
|
103
|
+
}),
|
|
84
104
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
85
105
|
__metadata("design:type", Date)
|
|
86
106
|
], Task.prototype, "completedTime", void 0);
|
|
87
107
|
__decorate([
|
|
88
|
-
(0, swagger_1.ApiProperty)({
|
|
108
|
+
(0, swagger_1.ApiProperty)({
|
|
109
|
+
type: Boolean,
|
|
110
|
+
description: "Does the task require revision?",
|
|
111
|
+
default: false,
|
|
112
|
+
}),
|
|
89
113
|
(0, typeorm_1.Column)({ default: false }),
|
|
90
114
|
__metadata("design:type", Boolean)
|
|
91
115
|
], Task.prototype, "requireRevision", void 0);
|
|
92
116
|
__decorate([
|
|
93
|
-
(0, swagger_1.ApiProperty)({
|
|
117
|
+
(0, swagger_1.ApiProperty)({
|
|
118
|
+
type: Boolean,
|
|
119
|
+
description: "Does the task require a summary?",
|
|
120
|
+
default: false,
|
|
121
|
+
}),
|
|
94
122
|
(0, typeorm_1.Column)({ default: false }),
|
|
95
123
|
__metadata("design:type", Boolean)
|
|
96
124
|
], Task.prototype, "requireSummary", void 0);
|
|
97
125
|
__decorate([
|
|
98
|
-
(0, swagger_1.ApiProperty)({
|
|
126
|
+
(0, swagger_1.ApiProperty)({
|
|
127
|
+
type: Boolean,
|
|
128
|
+
description: "Can the responsible user change the date?",
|
|
129
|
+
default: false,
|
|
130
|
+
}),
|
|
99
131
|
(0, typeorm_1.Column)({ default: false }),
|
|
100
132
|
__metadata("design:type", Boolean)
|
|
101
133
|
], Task.prototype, "responsibleCanChangeDate", void 0);
|
|
102
134
|
__decorate([
|
|
103
|
-
(0, swagger_1.ApiProperty)({
|
|
135
|
+
(0, swagger_1.ApiProperty)({
|
|
136
|
+
type: Boolean,
|
|
137
|
+
description: "La tarea es importante?",
|
|
138
|
+
default: false,
|
|
139
|
+
}),
|
|
104
140
|
(0, typeorm_1.Column)({ default: false }),
|
|
105
141
|
__metadata("design:type", Boolean)
|
|
106
142
|
], Task.prototype, "important", void 0);
|
|
107
143
|
__decorate([
|
|
108
144
|
(0, swagger_1.ApiProperty)({
|
|
109
145
|
enum: enums_1.TaskStatus,
|
|
110
|
-
description:
|
|
111
|
-
default: enums_1.TaskStatus.PENDING
|
|
146
|
+
description: "Status of the task",
|
|
147
|
+
default: enums_1.TaskStatus.PENDING,
|
|
112
148
|
}),
|
|
113
149
|
(0, typeorm_1.Column)({
|
|
114
150
|
type: "enum",
|
|
115
151
|
enum: enums_1.TaskStatus,
|
|
116
|
-
default: enums_1.TaskStatus.PENDING
|
|
152
|
+
default: enums_1.TaskStatus.PENDING,
|
|
117
153
|
}),
|
|
118
154
|
__metadata("design:type", String)
|
|
119
155
|
], Task.prototype, "status", void 0);
|
|
120
156
|
__decorate([
|
|
121
|
-
(0, swagger_1.ApiProperty)({
|
|
157
|
+
(0, swagger_1.ApiProperty)({
|
|
158
|
+
type: Boolean,
|
|
159
|
+
description: "Is the task completed?",
|
|
160
|
+
default: false,
|
|
161
|
+
}),
|
|
122
162
|
(0, typeorm_1.Column)({ default: false }),
|
|
123
163
|
__metadata("design:type", Boolean)
|
|
124
164
|
], Task.prototype, "isCompleted", void 0);
|
|
125
165
|
__decorate([
|
|
126
|
-
(0, swagger_1.ApiProperty)({
|
|
166
|
+
(0, swagger_1.ApiProperty)({
|
|
167
|
+
type: Boolean,
|
|
168
|
+
description: "Has the task been reviewed?",
|
|
169
|
+
default: false,
|
|
170
|
+
}),
|
|
127
171
|
(0, typeorm_1.Column)({ default: false }),
|
|
128
172
|
__metadata("design:type", Boolean)
|
|
129
173
|
], Task.prototype, "reviewed", void 0);
|
|
130
174
|
__decorate([
|
|
131
|
-
(0, swagger_1.ApiProperty)({
|
|
175
|
+
(0, swagger_1.ApiProperty)({
|
|
176
|
+
type: () => user_entity_1.User,
|
|
177
|
+
description: "User who created the task",
|
|
178
|
+
required: false,
|
|
179
|
+
}),
|
|
132
180
|
(0, typeorm_1.ManyToOne)(() => user_entity_1.User, {
|
|
133
181
|
onDelete: "SET NULL",
|
|
134
182
|
onUpdate: "CASCADE",
|
|
@@ -137,7 +185,11 @@ __decorate([
|
|
|
137
185
|
__metadata("design:type", user_entity_1.User)
|
|
138
186
|
], Task.prototype, "createdBy", void 0);
|
|
139
187
|
__decorate([
|
|
140
|
-
(0, swagger_1.ApiProperty)({
|
|
188
|
+
(0, swagger_1.ApiProperty)({
|
|
189
|
+
type: () => user_entity_1.User,
|
|
190
|
+
description: "User who reviewed the task",
|
|
191
|
+
required: false,
|
|
192
|
+
}),
|
|
141
193
|
(0, typeorm_1.ManyToOne)(() => user_entity_1.User, {
|
|
142
194
|
onDelete: "SET NULL",
|
|
143
195
|
onUpdate: "CASCADE",
|
|
@@ -146,7 +198,11 @@ __decorate([
|
|
|
146
198
|
__metadata("design:type", user_entity_1.User)
|
|
147
199
|
], Task.prototype, "reviewedBy", void 0);
|
|
148
200
|
__decorate([
|
|
149
|
-
(0, swagger_1.ApiProperty)({
|
|
201
|
+
(0, swagger_1.ApiProperty)({
|
|
202
|
+
type: () => [user_entity_1.User],
|
|
203
|
+
description: "Participants in the task",
|
|
204
|
+
required: false,
|
|
205
|
+
}),
|
|
150
206
|
(0, typeorm_1.ManyToMany)(() => user_entity_1.User, {
|
|
151
207
|
onDelete: "CASCADE",
|
|
152
208
|
onUpdate: "CASCADE",
|
|
@@ -155,7 +211,11 @@ __decorate([
|
|
|
155
211
|
__metadata("design:type", Array)
|
|
156
212
|
], Task.prototype, "participants", void 0);
|
|
157
213
|
__decorate([
|
|
158
|
-
(0, swagger_1.ApiProperty)({
|
|
214
|
+
(0, swagger_1.ApiProperty)({
|
|
215
|
+
type: () => [user_entity_1.User],
|
|
216
|
+
description: "Users responsible for the task",
|
|
217
|
+
required: false,
|
|
218
|
+
}),
|
|
159
219
|
(0, typeorm_1.ManyToMany)(() => user_entity_1.User, {
|
|
160
220
|
onDelete: "CASCADE",
|
|
161
221
|
onUpdate: "CASCADE",
|
|
@@ -164,7 +224,11 @@ __decorate([
|
|
|
164
224
|
__metadata("design:type", Array)
|
|
165
225
|
], Task.prototype, "responsible", void 0);
|
|
166
226
|
__decorate([
|
|
167
|
-
(0, swagger_1.ApiProperty)({
|
|
227
|
+
(0, swagger_1.ApiProperty)({
|
|
228
|
+
type: () => [user_entity_1.User],
|
|
229
|
+
description: "Observers of the task",
|
|
230
|
+
required: false,
|
|
231
|
+
}),
|
|
168
232
|
(0, typeorm_1.ManyToMany)(() => user_entity_1.User, {
|
|
169
233
|
onDelete: "CASCADE",
|
|
170
234
|
onUpdate: "CASCADE",
|
|
@@ -173,8 +237,11 @@ __decorate([
|
|
|
173
237
|
__metadata("design:type", Array)
|
|
174
238
|
], Task.prototype, "observers", void 0);
|
|
175
239
|
__decorate([
|
|
176
|
-
(0, swagger_1.ApiProperty)({
|
|
177
|
-
|
|
240
|
+
(0, swagger_1.ApiProperty)({
|
|
241
|
+
type: () => [tag_entity_1.Tag],
|
|
242
|
+
description: "Tags associated with the task",
|
|
243
|
+
}),
|
|
244
|
+
(0, typeorm_1.ManyToMany)(() => tag_entity_1.Tag, (tag) => tag.tasks, {
|
|
178
245
|
onDelete: "CASCADE",
|
|
179
246
|
onUpdate: "CASCADE",
|
|
180
247
|
}),
|
|
@@ -182,18 +249,29 @@ __decorate([
|
|
|
182
249
|
__metadata("design:type", Array)
|
|
183
250
|
], Task.prototype, "tags", void 0);
|
|
184
251
|
__decorate([
|
|
185
|
-
(0, swagger_1.ApiProperty)({
|
|
252
|
+
(0, swagger_1.ApiProperty)({
|
|
253
|
+
type: () => [task_list_field_1.TaskListField],
|
|
254
|
+
description: "List fields associated with the task",
|
|
255
|
+
required: false,
|
|
256
|
+
}),
|
|
186
257
|
(0, typeorm_1.Column)("json", { nullable: true }),
|
|
187
258
|
__metadata("design:type", Array)
|
|
188
259
|
], Task.prototype, "listField", void 0);
|
|
189
260
|
__decorate([
|
|
190
|
-
(0, swagger_1.ApiProperty)({
|
|
191
|
-
|
|
261
|
+
(0, swagger_1.ApiProperty)({
|
|
262
|
+
type: () => [task_comment_entity_1.TaskComment],
|
|
263
|
+
description: "Comments on the task",
|
|
264
|
+
}),
|
|
265
|
+
(0, typeorm_1.OneToMany)(() => task_comment_entity_1.TaskComment, (taskComment) => taskComment.task),
|
|
192
266
|
(0, typeorm_1.JoinColumn)(),
|
|
193
267
|
__metadata("design:type", Array)
|
|
194
268
|
], Task.prototype, "comments", void 0);
|
|
195
269
|
__decorate([
|
|
196
|
-
(0, swagger_1.ApiProperty)({
|
|
270
|
+
(0, swagger_1.ApiProperty)({
|
|
271
|
+
type: () => [helpers_1.TaskCRM],
|
|
272
|
+
description: "CRM entries associated with the task",
|
|
273
|
+
required: false,
|
|
274
|
+
}),
|
|
197
275
|
(0, typeorm_1.OneToMany)(() => helpers_1.TaskCRM, (taskCRM) => taskCRM.task, {
|
|
198
276
|
onDelete: "CASCADE",
|
|
199
277
|
onUpdate: "CASCADE",
|
|
@@ -201,7 +279,11 @@ __decorate([
|
|
|
201
279
|
__metadata("design:type", Array)
|
|
202
280
|
], Task.prototype, "crm", void 0);
|
|
203
281
|
__decorate([
|
|
204
|
-
(0, swagger_1.ApiProperty)({
|
|
282
|
+
(0, swagger_1.ApiProperty)({
|
|
283
|
+
type: () => Task,
|
|
284
|
+
description: "Parent task",
|
|
285
|
+
required: false,
|
|
286
|
+
}),
|
|
205
287
|
(0, typeorm_1.ManyToOne)(() => Task, {
|
|
206
288
|
onDelete: "CASCADE",
|
|
207
289
|
onUpdate: "CASCADE",
|
|
@@ -211,8 +293,12 @@ __decorate([
|
|
|
211
293
|
__metadata("design:type", Task)
|
|
212
294
|
], Task.prototype, "parentTask", void 0);
|
|
213
295
|
__decorate([
|
|
214
|
-
(0, swagger_1.ApiProperty)({
|
|
215
|
-
|
|
296
|
+
(0, swagger_1.ApiProperty)({
|
|
297
|
+
type: () => [Task],
|
|
298
|
+
description: "Child tasks",
|
|
299
|
+
required: false,
|
|
300
|
+
}),
|
|
301
|
+
(0, typeorm_1.OneToMany)(() => Task, (task) => task.parentTask),
|
|
216
302
|
__metadata("design:type", Array)
|
|
217
303
|
], Task.prototype, "subTasks", void 0);
|
|
218
304
|
exports.Task = Task = __decorate([
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"task.entity.js","sourceRoot":"","sources":["../../../src/entities/tools/task.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA4C;AAC5C,gDAAsC;AACtC,
|
|
1
|
+
{"version":3,"file":"task.entity.js","sourceRoot":"","sources":["../../../src/entities/tools/task.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA4C;AAC5C,gDAAsC;AACtC,qCASiB;AACjB,+DAAoD;AACpD,8CAAoC;AACpC,mEAA+D;AAC/D,8CAAgD;AAChD,uDAAkD;AAClD,oDAAiD;AACjD,6CAA8C;AAGvC,IAAM,IAAI,GAAV,MAAM,IAAK,SAAQ,wBAAU;IAOlC,QAAQ,CAAS;IAKjB,IAAI,CAAS;IAIb,MAAM,CAAS;IAQf,WAAW,CAAS;IAQpB,QAAQ,CAAO;IAQf,SAAS,CAAO;IAQhB,aAAa,CAAO;IAQpB,eAAe,CAAU;IAQzB,cAAc,CAAU;IAQxB,wBAAwB,CAAU;IAQlC,SAAS,CAAU;IAYnB,MAAM,CAAa;IAQnB,WAAW,CAAU;IAQrB,QAAQ,CAAU;IAYlB,SAAS,CAAO;IAYhB,UAAU,CAAO;IAYjB,YAAY,CAAU;IAYtB,WAAW,CAAU;IAYrB,SAAS,CAAU;IAWnB,IAAI,CAAQ;IAQZ,SAAS,CAAkB;IAQ3B,QAAQ,CAAgB;IAWxB,GAAG,CAAa;IAahB,UAAU,CAAQ;IAQlB,QAAQ,CAAU;CACnB,CAAA;AApOY,oBAAI;AAOf;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,MAAM;QACZ,WAAW,EAAE,yBAAyB;QACtC,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;sCAC7B;AAKjB;IAHC,IAAA,qBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,WAAW,EAAE,kBAAkB,EAAE,SAAS,EAAE,CAAC,EAAE,CAAC;IAC5E,IAAA,2BAAS,EAAC,CAAC,CAAC;IACZ,IAAA,gBAAM,EAAC,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;;kCAC9B;AAIb;IAFC,IAAA,gBAAM,GAAE;IACR,IAAA,mBAAS,EAAC,WAAW,CAAC;;oCACR;AAQf;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,MAAM;QACZ,WAAW,EAAE,yBAAyB;QACtC,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yCACrB;AAQpB;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,IAAI;QACV,WAAW,EAAE,sBAAsB;QACnC,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACjB,IAAI;sCAAC;AAQf;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,IAAI;QACV,WAAW,EAAE,wBAAwB;QACrC,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BAChB,IAAI;uCAAC;AAQhB;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,IAAI;QACV,WAAW,EAAE,6BAA6B;QAC1C,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACZ,IAAI;2CAAC;AAQpB;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,OAAO;QACb,WAAW,EAAE,iCAAiC;QAC9C,OAAO,EAAE,KAAK;KACf,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;6CACF;AAQzB;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,OAAO;QACb,WAAW,EAAE,kCAAkC;QAC/C,OAAO,EAAE,KAAK;KACf,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;4CACH;AAQxB;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,OAAO;QACb,WAAW,EAAE,2CAA2C;QACxD,OAAO,EAAE,KAAK;KACf,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;sDACO;AAQlC;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,OAAO;QACb,WAAW,EAAE,yBAAyB;QACtC,OAAO,EAAE,KAAK;KACf,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;uCACR;AAYnB;IAVC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,kBAAU;QAChB,WAAW,EAAE,oBAAoB;QACjC,OAAO,EAAE,kBAAU,CAAC,OAAO;KAC5B,CAAC;IACD,IAAA,gBAAM,EAAC;QACN,IAAI,EAAE,MAAM;QACZ,IAAI,EAAE,kBAAU;QAChB,OAAO,EAAE,kBAAU,CAAC,OAAO;KAC5B,CAAC;;oCACiB;AAQnB;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,OAAO;QACb,WAAW,EAAE,wBAAwB;QACrC,OAAO,EAAE,KAAK;KACf,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;yCACN;AAQrB;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,OAAO;QACb,WAAW,EAAE,6BAA6B;QAC1C,OAAO,EAAE,KAAK;KACf,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;sCACT;AAYlB;IAVC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,GAAG,EAAE,CAAC,kBAAI;QAChB,WAAW,EAAE,2BAA2B;QACxC,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,kBAAI,EAAE;QACrB,QAAQ,EAAE,UAAU;QACpB,QAAQ,EAAE,SAAS;QACnB,QAAQ,EAAE,IAAI;KACf,CAAC;8BACS,kBAAI;uCAAC;AAYhB;IAVC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,GAAG,EAAE,CAAC,kBAAI;QAChB,WAAW,EAAE,4BAA4B;QACzC,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,kBAAI,EAAE;QACrB,QAAQ,EAAE,UAAU;QACpB,QAAQ,EAAE,SAAS;QACnB,QAAQ,EAAE,IAAI;KACf,CAAC;8BACU,kBAAI;wCAAC;AAYjB;IAVC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC,kBAAI,CAAC;QAClB,WAAW,EAAE,0BAA0B;QACvC,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,oBAAU,EAAC,GAAG,EAAE,CAAC,kBAAI,EAAE;QACtB,QAAQ,EAAE,SAAS;QACnB,QAAQ,EAAE,SAAS;KACpB,CAAC;IACD,IAAA,mBAAS,GAAE;;0CACU;AAYtB;IAVC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC,kBAAI,CAAC;QAClB,WAAW,EAAE,gCAAgC;QAC7C,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,oBAAU,EAAC,GAAG,EAAE,CAAC,kBAAI,EAAE;QACtB,QAAQ,EAAE,SAAS;QACnB,QAAQ,EAAE,SAAS;KACpB,CAAC;IACD,IAAA,mBAAS,GAAE;;yCACS;AAYrB;IAVC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC,kBAAI,CAAC;QAClB,WAAW,EAAE,uBAAuB;QACpC,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,oBAAU,EAAC,GAAG,EAAE,CAAC,kBAAI,EAAE;QACtB,QAAQ,EAAE,SAAS;QACnB,QAAQ,EAAE,SAAS;KACpB,CAAC;IACD,IAAA,mBAAS,GAAE;;uCACO;AAWnB;IATC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC,gBAAG,CAAC;QACjB,WAAW,EAAE,+BAA+B;KAC7C,CAAC;IACD,IAAA,oBAAU,EAAC,GAAG,EAAE,CAAC,gBAAG,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,KAAK,EAAE;QACzC,QAAQ,EAAE,SAAS;QACnB,QAAQ,EAAE,SAAS;KACpB,CAAC;IACD,IAAA,mBAAS,GAAE;;kCACA;AAQZ;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC,+BAAa,CAAC;QAC3B,WAAW,EAAE,sCAAsC;QACnD,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,gBAAM,EAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uCACR;AAQ3B;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC,iCAAW,CAAC;QACzB,WAAW,EAAE,sBAAsB;KACpC,CAAC;IACD,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,iCAAW,EAAE,CAAC,WAAW,EAAE,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC;IAC/D,IAAA,oBAAU,GAAE;;sCACW;AAWxB;IATC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC,iBAAO,CAAC;QACrB,WAAW,EAAE,sCAAsC;QACnD,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,iBAAO,EAAE,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,IAAI,EAAE;QACnD,QAAQ,EAAE,SAAS;QACnB,QAAQ,EAAE,SAAS;KACpB,CAAC;;iCACc;AAahB;IAXC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,GAAG,EAAE,CAAC,IAAI;QAChB,WAAW,EAAE,aAAa;QAC1B,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,IAAI,EAAE;QACrB,QAAQ,EAAE,SAAS;QACnB,QAAQ,EAAE,SAAS;QACnB,QAAQ,EAAE,IAAI;KACf,CAAC;IACD,IAAA,oBAAU,GAAE;8BACA,IAAI;wCAAC;AAQlB;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC,IAAI,CAAC;QAClB,WAAW,EAAE,aAAa;QAC1B,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,UAAU,CAAC;;sCAC/B;eAnOP,IAAI;IADhB,IAAA,gBAAM,GAAE;GACI,IAAI,CAoOhB"}
|