@hed-hog/operations 0.0.302 → 0.0.304
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/README.md +200 -43
- package/dist/controllers/operations-approvals.controller.d.ts +9 -0
- package/dist/controllers/operations-approvals.controller.d.ts.map +1 -0
- package/dist/controllers/operations-approvals.controller.js +64 -0
- package/dist/controllers/operations-approvals.controller.js.map +1 -0
- package/dist/controllers/operations-collaborators.controller.d.ts +223 -0
- package/dist/controllers/operations-collaborators.controller.d.ts.map +1 -0
- package/dist/controllers/operations-collaborators.controller.js +96 -0
- package/dist/controllers/operations-collaborators.controller.js.map +1 -0
- package/dist/controllers/operations-contracts.controller.d.ts +683 -0
- package/dist/controllers/operations-contracts.controller.d.ts.map +1 -0
- package/dist/controllers/operations-contracts.controller.js +198 -0
- package/dist/controllers/operations-contracts.controller.js.map +1 -0
- package/dist/controllers/operations-org-structure.controller.d.ts +108 -0
- package/dist/controllers/operations-org-structure.controller.d.ts.map +1 -0
- package/dist/controllers/operations-org-structure.controller.js +143 -0
- package/dist/controllers/operations-org-structure.controller.js.map +1 -0
- package/dist/controllers/operations-projects.controller.d.ts +169 -0
- package/dist/controllers/operations-projects.controller.d.ts.map +1 -0
- package/dist/controllers/operations-projects.controller.js +87 -0
- package/dist/controllers/operations-projects.controller.js.map +1 -0
- package/dist/controllers/operations-tasks.controller.d.ts +54 -0
- package/dist/controllers/operations-tasks.controller.d.ts.map +1 -0
- package/dist/controllers/operations-tasks.controller.js +79 -0
- package/dist/controllers/operations-tasks.controller.js.map +1 -0
- package/dist/controllers/operations-timesheets.controller.d.ts +99 -0
- package/dist/controllers/operations-timesheets.controller.d.ts.map +1 -0
- package/dist/controllers/operations-timesheets.controller.js +154 -0
- package/dist/controllers/operations-timesheets.controller.js.map +1 -0
- package/dist/dto/create-collaborator-type.dto.d.ts +10 -0
- package/dist/dto/create-collaborator-type.dto.d.ts.map +1 -0
- package/dist/dto/create-collaborator-type.dto.js +56 -0
- package/dist/dto/create-collaborator-type.dto.js.map +1 -0
- package/dist/dto/create-collaborator.dto.d.ts +42 -0
- package/dist/dto/create-collaborator.dto.d.ts.map +1 -0
- package/dist/dto/create-collaborator.dto.js +228 -0
- package/dist/dto/create-collaborator.dto.js.map +1 -0
- package/dist/dto/create-schedule-adjustment-request.dto.d.ts +17 -0
- package/dist/dto/create-schedule-adjustment-request.dto.d.ts.map +1 -0
- package/dist/dto/create-schedule-adjustment-request.dto.js +89 -0
- package/dist/dto/create-schedule-adjustment-request.dto.js.map +1 -0
- package/dist/dto/create-task.dto.d.ts +8 -0
- package/dist/dto/create-task.dto.d.ts.map +1 -0
- package/dist/dto/create-task.dto.js +50 -0
- package/dist/dto/create-task.dto.js.map +1 -0
- package/dist/dto/create-time-off-request.dto.d.ts +9 -0
- package/dist/dto/create-time-off-request.dto.d.ts.map +1 -0
- package/dist/dto/create-time-off-request.dto.js +54 -0
- package/dist/dto/create-time-off-request.dto.js.map +1 -0
- package/dist/dto/create-timesheet-entry.dto.d.ts +12 -0
- package/dist/dto/create-timesheet-entry.dto.d.ts.map +1 -0
- package/dist/dto/create-timesheet-entry.dto.js +75 -0
- package/dist/dto/create-timesheet-entry.dto.js.map +1 -0
- package/dist/dto/list-collaborator-types.dto.d.ts +4 -0
- package/dist/dto/list-collaborator-types.dto.d.ts.map +1 -0
- package/dist/dto/list-collaborator-types.dto.js +29 -0
- package/dist/dto/list-collaborator-types.dto.js.map +1 -0
- package/dist/dto/list-collaborators.dto.d.ts +8 -0
- package/dist/dto/list-collaborators.dto.d.ts.map +1 -0
- package/dist/dto/list-collaborators.dto.js +42 -0
- package/dist/dto/list-collaborators.dto.js.map +1 -0
- package/dist/dto/list-project-options.dto.d.ts +4 -0
- package/dist/dto/list-project-options.dto.d.ts.map +1 -0
- package/dist/dto/list-project-options.dto.js +8 -0
- package/dist/dto/list-project-options.dto.js.map +1 -0
- package/dist/dto/list-tasks.dto.d.ts +7 -0
- package/dist/dto/list-tasks.dto.d.ts.map +1 -0
- package/dist/dto/list-tasks.dto.js +38 -0
- package/dist/dto/list-tasks.dto.js.map +1 -0
- package/dist/dto/list-timesheet-entries.dto.d.ts +10 -0
- package/dist/dto/list-timesheet-entries.dto.d.ts.map +1 -0
- package/dist/dto/list-timesheet-entries.dto.js +54 -0
- package/dist/dto/list-timesheet-entries.dto.js.map +1 -0
- package/dist/dto/update-collaborator-type.dto.d.ts +4 -0
- package/dist/dto/update-collaborator-type.dto.d.ts.map +1 -0
- package/dist/dto/update-collaborator-type.dto.js +8 -0
- package/dist/dto/update-collaborator-type.dto.js.map +1 -0
- package/dist/dto/update-collaborator.dto.d.ts +4 -0
- package/dist/dto/update-collaborator.dto.d.ts.map +1 -0
- package/dist/dto/update-collaborator.dto.js +8 -0
- package/dist/dto/update-collaborator.dto.js.map +1 -0
- package/dist/dto/update-task.dto.d.ts +8 -0
- package/dist/dto/update-task.dto.d.ts.map +1 -0
- package/dist/dto/update-task.dto.js +51 -0
- package/dist/dto/update-task.dto.js.map +1 -0
- package/dist/operations.controller.d.ts +0 -1045
- package/dist/operations.controller.d.ts.map +1 -1
- package/dist/operations.controller.js +0 -429
- package/dist/operations.controller.js.map +1 -1
- package/dist/operations.module.d.ts.map +1 -1
- package/dist/operations.module.js +23 -2
- package/dist/operations.module.js.map +1 -1
- package/dist/operations.service.d.ts +373 -8
- package/dist/operations.service.d.ts.map +1 -1
- package/dist/operations.service.js +1598 -111
- package/dist/operations.service.js.map +1 -1
- package/dist/operations.service.spec.js +315 -1
- package/dist/operations.service.spec.js.map +1 -1
- package/dist/services/shared/operations-access.service.d.ts +16 -0
- package/dist/services/shared/operations-access.service.d.ts.map +1 -0
- package/dist/services/shared/operations-access.service.js +48 -0
- package/dist/services/shared/operations-access.service.js.map +1 -0
- package/hedhog/data/dashboard.yaml +20 -0
- package/hedhog/data/dashboard_component.yaml +274 -0
- package/hedhog/data/dashboard_component_role.yaml +174 -0
- package/hedhog/data/dashboard_item.yaml +299 -0
- package/hedhog/data/dashboard_role.yaml +20 -0
- package/hedhog/data/menu.yaml +30 -13
- package/hedhog/data/operations_collaborator_type.yaml +76 -0
- package/hedhog/data/route.yaml +183 -0
- package/hedhog/frontend/app/_components/async-options-combobox.tsx.ejs +231 -0
- package/hedhog/frontend/app/_components/collaborator-details-screen.tsx.ejs +134 -49
- package/hedhog/frontend/app/_components/collaborator-form-screen.tsx.ejs +772 -93
- package/hedhog/frontend/app/_components/department-select-with-create.tsx.ejs +38 -16
- package/hedhog/frontend/app/_components/project-form-screen.tsx.ejs +875 -632
- package/hedhog/frontend/app/_components/timesheet-task-create-sheet.tsx.ejs +213 -0
- package/hedhog/frontend/app/_lib/api.ts.ejs +30 -1
- package/hedhog/frontend/app/_lib/types.ts.ejs +142 -39
- package/hedhog/frontend/app/_lib/utils/format.ts.ejs +33 -2
- package/hedhog/frontend/app/approvals/page.tsx.ejs +116 -98
- package/hedhog/frontend/app/collaborator-types/page.tsx.ejs +502 -0
- package/hedhog/frontend/app/collaborators/page.tsx.ejs +109 -68
- package/hedhog/frontend/app/contracts/page.tsx.ejs +99 -102
- package/hedhog/frontend/app/contracts/templates/page.tsx.ejs +98 -102
- package/hedhog/frontend/app/departments/page.tsx.ejs +96 -75
- package/hedhog/frontend/app/projects/page.tsx.ejs +137 -127
- package/hedhog/frontend/app/schedule-adjustments/page.tsx.ejs +244 -120
- package/hedhog/frontend/app/team/page.tsx.ejs +15 -2
- package/hedhog/frontend/app/time-off/page.tsx.ejs +158 -82
- package/hedhog/frontend/app/timesheets/page.tsx.ejs +814 -357
- package/hedhog/frontend/messages/en.json +243 -51
- package/hedhog/frontend/messages/pt.json +458 -268
- package/hedhog/table/operations_collaborator.yaml +26 -13
- package/hedhog/table/operations_collaborator_equity_participation.yaml +43 -0
- package/hedhog/table/operations_collaborator_type.yaml +33 -0
- package/hedhog/table/operations_job_title.yaml +24 -0
- package/hedhog/table/operations_project_assignment.yaml +9 -0
- package/hedhog/table/operations_project_role.yaml +39 -0
- package/hedhog/table/operations_task.yaml +30 -0
- package/hedhog/table/operations_timesheet_entry.yaml +12 -0
- package/package.json +6 -6
- package/src/controllers/operations-approvals.controller.ts +24 -0
- package/src/controllers/operations-collaborators.controller.ts +60 -0
- package/src/controllers/operations-contracts.controller.ts +138 -0
- package/src/controllers/operations-org-structure.controller.ts +92 -0
- package/src/controllers/operations-projects.controller.ts +50 -0
- package/src/controllers/operations-tasks.controller.ts +52 -0
- package/src/controllers/operations-timesheets.controller.ts +100 -0
- package/src/dto/create-collaborator-type.dto.ts +43 -0
- package/src/dto/create-collaborator.dto.ts +223 -0
- package/src/dto/create-schedule-adjustment-request.dto.ts +91 -0
- package/src/dto/create-task.dto.ts +35 -0
- package/src/dto/create-time-off-request.dto.ts +53 -0
- package/src/dto/create-timesheet-entry.dto.ts +67 -0
- package/src/dto/list-collaborator-types.dto.ts +15 -0
- package/src/dto/list-collaborators.dto.ts +30 -0
- package/src/dto/list-project-options.dto.ts +3 -0
- package/src/dto/list-tasks.dto.ts +25 -0
- package/src/dto/list-timesheet-entries.dto.ts +40 -0
- package/src/dto/update-collaborator-type.dto.ts +3 -0
- package/src/dto/update-collaborator.dto.ts +3 -0
- package/src/dto/update-task.dto.ts +36 -0
- package/src/operations.controller.ts +1 -278
- package/src/operations.module.ts +23 -2
- package/src/operations.service.spec.ts +450 -0
- package/src/operations.service.ts +4641 -2163
- package/src/services/shared/operations-access.service.ts +52 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operations.controller.d.ts","sourceRoot":"","sources":["../src/operations.controller.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"operations.controller.d.ts","sourceRoot":"","sources":["../src/operations.controller.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAEzD,qBAEa,oBAAoB;IACnB,OAAO,CAAC,QAAQ,CAAC,iBAAiB;gBAAjB,iBAAiB,EAAE,iBAAiB;IAGjE,YAAY,CAAS,IAAI,KAAA;;;;;;;;;;;;;;;;;;;;;;;;;IAKzB,+BAA+B,CAAS,IAAI,KAAA,EAAU,IAAI,KAAA;;;;;;;IAQ1D,iBAAiB,CAAS,IAAI,KAAA;;;;;;;;;;;;;;CAG/B"}
|
|
@@ -23,123 +23,6 @@ let OperationsController = class OperationsController {
|
|
|
23
23
|
getDashboard(user) {
|
|
24
24
|
return this.operationsService.getDashboard(Number((user === null || user === void 0 ? void 0 : user.id) || 0));
|
|
25
25
|
}
|
|
26
|
-
listCollaborators(user) {
|
|
27
|
-
return this.operationsService.listCollaborators(Number((user === null || user === void 0 ? void 0 : user.id) || 0));
|
|
28
|
-
}
|
|
29
|
-
getMyCollaborator(user) {
|
|
30
|
-
return this.operationsService.getMyCollaborator(Number((user === null || user === void 0 ? void 0 : user.id) || 0));
|
|
31
|
-
}
|
|
32
|
-
getCollaborator(user, id) {
|
|
33
|
-
return this.operationsService.getCollaboratorByIdForUser(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id);
|
|
34
|
-
}
|
|
35
|
-
getTeam(user) {
|
|
36
|
-
return this.operationsService.getTeam(Number((user === null || user === void 0 ? void 0 : user.id) || 0));
|
|
37
|
-
}
|
|
38
|
-
createCollaborator(user, data) {
|
|
39
|
-
return this.operationsService.createCollaborator(Number((user === null || user === void 0 ? void 0 : user.id) || 0), data);
|
|
40
|
-
}
|
|
41
|
-
updateCollaborator(user, id, data) {
|
|
42
|
-
return this.operationsService.updateCollaborator(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id, data);
|
|
43
|
-
}
|
|
44
|
-
listDepartments(user) {
|
|
45
|
-
return this.operationsService.listDepartments(Number((user === null || user === void 0 ? void 0 : user.id) || 0));
|
|
46
|
-
}
|
|
47
|
-
createDepartment(user, data) {
|
|
48
|
-
return this.operationsService.createDepartment(Number((user === null || user === void 0 ? void 0 : user.id) || 0), data);
|
|
49
|
-
}
|
|
50
|
-
updateDepartment(user, id, data) {
|
|
51
|
-
return this.operationsService.updateDepartment(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id, data);
|
|
52
|
-
}
|
|
53
|
-
listProjects(user) {
|
|
54
|
-
return this.operationsService.listProjects(Number((user === null || user === void 0 ? void 0 : user.id) || 0));
|
|
55
|
-
}
|
|
56
|
-
getProject(user, id) {
|
|
57
|
-
return this.operationsService.getProjectById(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id);
|
|
58
|
-
}
|
|
59
|
-
createProject(user, data) {
|
|
60
|
-
return this.operationsService.createProject(Number((user === null || user === void 0 ? void 0 : user.id) || 0), data);
|
|
61
|
-
}
|
|
62
|
-
updateProject(user, id, data) {
|
|
63
|
-
return this.operationsService.updateProject(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id, data);
|
|
64
|
-
}
|
|
65
|
-
listContractTemplates(user) {
|
|
66
|
-
return this.operationsService.listContractTemplates(Number((user === null || user === void 0 ? void 0 : user.id) || 0));
|
|
67
|
-
}
|
|
68
|
-
getContractTemplate(user, id) {
|
|
69
|
-
return this.operationsService.getContractTemplateById(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id);
|
|
70
|
-
}
|
|
71
|
-
createContractTemplate(user, data) {
|
|
72
|
-
return this.operationsService.createContractTemplate(Number((user === null || user === void 0 ? void 0 : user.id) || 0), data);
|
|
73
|
-
}
|
|
74
|
-
updateContractTemplate(user, id, data) {
|
|
75
|
-
return this.operationsService.updateContractTemplate(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id, data);
|
|
76
|
-
}
|
|
77
|
-
listContracts(user) {
|
|
78
|
-
return this.operationsService.listContracts(Number((user === null || user === void 0 ? void 0 : user.id) || 0));
|
|
79
|
-
}
|
|
80
|
-
getContract(user, id) {
|
|
81
|
-
return this.operationsService.getContractById(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id);
|
|
82
|
-
}
|
|
83
|
-
createContractDraft(user, data) {
|
|
84
|
-
return this.operationsService.createContractDraft(Number((user === null || user === void 0 ? void 0 : user.id) || 0), data);
|
|
85
|
-
}
|
|
86
|
-
createContract(user, data) {
|
|
87
|
-
return this.operationsService.createContract(Number((user === null || user === void 0 ? void 0 : user.id) || 0), data);
|
|
88
|
-
}
|
|
89
|
-
extractContractDraft(user, data) {
|
|
90
|
-
return this.operationsService.extractContractDraft(Number((user === null || user === void 0 ? void 0 : user.id) || 0), data);
|
|
91
|
-
}
|
|
92
|
-
extractContractSource(user, id, data) {
|
|
93
|
-
return this.operationsService.extractContractSource(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id, data);
|
|
94
|
-
}
|
|
95
|
-
generateContractContent(user, id, data) {
|
|
96
|
-
return this.operationsService.generateContractContent(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id, data);
|
|
97
|
-
}
|
|
98
|
-
reviewContractLegally(user, id, data) {
|
|
99
|
-
return this.operationsService.reviewContractLegally(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id, data);
|
|
100
|
-
}
|
|
101
|
-
updateContract(user, id, data) {
|
|
102
|
-
return this.operationsService.updateContract(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id, data);
|
|
103
|
-
}
|
|
104
|
-
removeContract(user, id) {
|
|
105
|
-
return this.operationsService.removeContract(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id);
|
|
106
|
-
}
|
|
107
|
-
generateContractPdf(user, id) {
|
|
108
|
-
return this.operationsService.generateContractPdf(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id);
|
|
109
|
-
}
|
|
110
|
-
listTimesheets(user) {
|
|
111
|
-
return this.operationsService.listTimesheets(Number((user === null || user === void 0 ? void 0 : user.id) || 0));
|
|
112
|
-
}
|
|
113
|
-
createTimesheet(user, data) {
|
|
114
|
-
return this.operationsService.createTimesheet(Number((user === null || user === void 0 ? void 0 : user.id) || 0), data);
|
|
115
|
-
}
|
|
116
|
-
updateTimesheet(user, id, data) {
|
|
117
|
-
return this.operationsService.updateTimesheet(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id, data);
|
|
118
|
-
}
|
|
119
|
-
submitTimesheet(user, id) {
|
|
120
|
-
return this.operationsService.submitTimesheet(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id);
|
|
121
|
-
}
|
|
122
|
-
listTimeOffRequests(user) {
|
|
123
|
-
return this.operationsService.listTimeOffRequests(Number((user === null || user === void 0 ? void 0 : user.id) || 0));
|
|
124
|
-
}
|
|
125
|
-
createTimeOffRequest(user, data) {
|
|
126
|
-
return this.operationsService.createTimeOffRequest(Number((user === null || user === void 0 ? void 0 : user.id) || 0), data);
|
|
127
|
-
}
|
|
128
|
-
listScheduleAdjustments(user) {
|
|
129
|
-
return this.operationsService.listScheduleAdjustments(Number((user === null || user === void 0 ? void 0 : user.id) || 0));
|
|
130
|
-
}
|
|
131
|
-
createScheduleAdjustmentRequest(user, data) {
|
|
132
|
-
return this.operationsService.createScheduleAdjustmentRequest(Number((user === null || user === void 0 ? void 0 : user.id) || 0), data);
|
|
133
|
-
}
|
|
134
|
-
listApprovals(user) {
|
|
135
|
-
return this.operationsService.listApprovals(Number((user === null || user === void 0 ? void 0 : user.id) || 0));
|
|
136
|
-
}
|
|
137
|
-
approve(user, id, data) {
|
|
138
|
-
return this.operationsService.approve(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id, data);
|
|
139
|
-
}
|
|
140
|
-
reject(user, id, data) {
|
|
141
|
-
return this.operationsService.reject(Number((user === null || user === void 0 ? void 0 : user.id) || 0), id, data);
|
|
142
|
-
}
|
|
143
26
|
publishAccountsPayableReference(user, data) {
|
|
144
27
|
return this.operationsService.publishAccountsPayableReference(Number((user === null || user === void 0 ? void 0 : user.id) || 0), data);
|
|
145
28
|
}
|
|
@@ -155,318 +38,6 @@ __decorate([
|
|
|
155
38
|
__metadata("design:paramtypes", [Object]),
|
|
156
39
|
__metadata("design:returntype", void 0)
|
|
157
40
|
], OperationsController.prototype, "getDashboard", null);
|
|
158
|
-
__decorate([
|
|
159
|
-
(0, common_1.Get)('collaborators'),
|
|
160
|
-
__param(0, (0, api_1.User)()),
|
|
161
|
-
__metadata("design:type", Function),
|
|
162
|
-
__metadata("design:paramtypes", [Object]),
|
|
163
|
-
__metadata("design:returntype", void 0)
|
|
164
|
-
], OperationsController.prototype, "listCollaborators", null);
|
|
165
|
-
__decorate([
|
|
166
|
-
(0, common_1.Get)('collaborators/me'),
|
|
167
|
-
__param(0, (0, api_1.User)()),
|
|
168
|
-
__metadata("design:type", Function),
|
|
169
|
-
__metadata("design:paramtypes", [Object]),
|
|
170
|
-
__metadata("design:returntype", void 0)
|
|
171
|
-
], OperationsController.prototype, "getMyCollaborator", null);
|
|
172
|
-
__decorate([
|
|
173
|
-
(0, common_1.Get)('collaborators/:id'),
|
|
174
|
-
__param(0, (0, api_1.User)()),
|
|
175
|
-
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
176
|
-
__metadata("design:type", Function),
|
|
177
|
-
__metadata("design:paramtypes", [Object, Number]),
|
|
178
|
-
__metadata("design:returntype", void 0)
|
|
179
|
-
], OperationsController.prototype, "getCollaborator", null);
|
|
180
|
-
__decorate([
|
|
181
|
-
(0, common_1.Get)('collaborators/team'),
|
|
182
|
-
__param(0, (0, api_1.User)()),
|
|
183
|
-
__metadata("design:type", Function),
|
|
184
|
-
__metadata("design:paramtypes", [Object]),
|
|
185
|
-
__metadata("design:returntype", void 0)
|
|
186
|
-
], OperationsController.prototype, "getTeam", null);
|
|
187
|
-
__decorate([
|
|
188
|
-
(0, common_1.Post)('collaborators'),
|
|
189
|
-
__param(0, (0, api_1.User)()),
|
|
190
|
-
__param(1, (0, common_1.Body)()),
|
|
191
|
-
__metadata("design:type", Function),
|
|
192
|
-
__metadata("design:paramtypes", [Object, Object]),
|
|
193
|
-
__metadata("design:returntype", void 0)
|
|
194
|
-
], OperationsController.prototype, "createCollaborator", null);
|
|
195
|
-
__decorate([
|
|
196
|
-
(0, common_1.Patch)('collaborators/:id'),
|
|
197
|
-
__param(0, (0, api_1.User)()),
|
|
198
|
-
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
199
|
-
__param(2, (0, common_1.Body)()),
|
|
200
|
-
__metadata("design:type", Function),
|
|
201
|
-
__metadata("design:paramtypes", [Object, Number, Object]),
|
|
202
|
-
__metadata("design:returntype", void 0)
|
|
203
|
-
], OperationsController.prototype, "updateCollaborator", null);
|
|
204
|
-
__decorate([
|
|
205
|
-
(0, common_1.Get)('departments'),
|
|
206
|
-
__param(0, (0, api_1.User)()),
|
|
207
|
-
__metadata("design:type", Function),
|
|
208
|
-
__metadata("design:paramtypes", [Object]),
|
|
209
|
-
__metadata("design:returntype", void 0)
|
|
210
|
-
], OperationsController.prototype, "listDepartments", null);
|
|
211
|
-
__decorate([
|
|
212
|
-
(0, common_1.Post)('departments'),
|
|
213
|
-
__param(0, (0, api_1.User)()),
|
|
214
|
-
__param(1, (0, common_1.Body)()),
|
|
215
|
-
__metadata("design:type", Function),
|
|
216
|
-
__metadata("design:paramtypes", [Object, Object]),
|
|
217
|
-
__metadata("design:returntype", void 0)
|
|
218
|
-
], OperationsController.prototype, "createDepartment", null);
|
|
219
|
-
__decorate([
|
|
220
|
-
(0, common_1.Patch)('departments/:id'),
|
|
221
|
-
__param(0, (0, api_1.User)()),
|
|
222
|
-
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
223
|
-
__param(2, (0, common_1.Body)()),
|
|
224
|
-
__metadata("design:type", Function),
|
|
225
|
-
__metadata("design:paramtypes", [Object, Number, Object]),
|
|
226
|
-
__metadata("design:returntype", void 0)
|
|
227
|
-
], OperationsController.prototype, "updateDepartment", null);
|
|
228
|
-
__decorate([
|
|
229
|
-
(0, common_1.Get)('projects'),
|
|
230
|
-
__param(0, (0, api_1.User)()),
|
|
231
|
-
__metadata("design:type", Function),
|
|
232
|
-
__metadata("design:paramtypes", [Object]),
|
|
233
|
-
__metadata("design:returntype", void 0)
|
|
234
|
-
], OperationsController.prototype, "listProjects", null);
|
|
235
|
-
__decorate([
|
|
236
|
-
(0, common_1.Get)('projects/:id'),
|
|
237
|
-
__param(0, (0, api_1.User)()),
|
|
238
|
-
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
239
|
-
__metadata("design:type", Function),
|
|
240
|
-
__metadata("design:paramtypes", [Object, Number]),
|
|
241
|
-
__metadata("design:returntype", void 0)
|
|
242
|
-
], OperationsController.prototype, "getProject", null);
|
|
243
|
-
__decorate([
|
|
244
|
-
(0, common_1.Post)('projects'),
|
|
245
|
-
__param(0, (0, api_1.User)()),
|
|
246
|
-
__param(1, (0, common_1.Body)()),
|
|
247
|
-
__metadata("design:type", Function),
|
|
248
|
-
__metadata("design:paramtypes", [Object, Object]),
|
|
249
|
-
__metadata("design:returntype", void 0)
|
|
250
|
-
], OperationsController.prototype, "createProject", null);
|
|
251
|
-
__decorate([
|
|
252
|
-
(0, common_1.Patch)('projects/:id'),
|
|
253
|
-
__param(0, (0, api_1.User)()),
|
|
254
|
-
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
255
|
-
__param(2, (0, common_1.Body)()),
|
|
256
|
-
__metadata("design:type", Function),
|
|
257
|
-
__metadata("design:paramtypes", [Object, Number, Object]),
|
|
258
|
-
__metadata("design:returntype", void 0)
|
|
259
|
-
], OperationsController.prototype, "updateProject", null);
|
|
260
|
-
__decorate([
|
|
261
|
-
(0, common_1.Get)('contract-templates'),
|
|
262
|
-
__param(0, (0, api_1.User)()),
|
|
263
|
-
__metadata("design:type", Function),
|
|
264
|
-
__metadata("design:paramtypes", [Object]),
|
|
265
|
-
__metadata("design:returntype", void 0)
|
|
266
|
-
], OperationsController.prototype, "listContractTemplates", null);
|
|
267
|
-
__decorate([
|
|
268
|
-
(0, common_1.Get)('contract-templates/:id'),
|
|
269
|
-
__param(0, (0, api_1.User)()),
|
|
270
|
-
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
271
|
-
__metadata("design:type", Function),
|
|
272
|
-
__metadata("design:paramtypes", [Object, Number]),
|
|
273
|
-
__metadata("design:returntype", void 0)
|
|
274
|
-
], OperationsController.prototype, "getContractTemplate", null);
|
|
275
|
-
__decorate([
|
|
276
|
-
(0, common_1.Post)('contract-templates'),
|
|
277
|
-
__param(0, (0, api_1.User)()),
|
|
278
|
-
__param(1, (0, common_1.Body)()),
|
|
279
|
-
__metadata("design:type", Function),
|
|
280
|
-
__metadata("design:paramtypes", [Object, Object]),
|
|
281
|
-
__metadata("design:returntype", void 0)
|
|
282
|
-
], OperationsController.prototype, "createContractTemplate", null);
|
|
283
|
-
__decorate([
|
|
284
|
-
(0, common_1.Patch)('contract-templates/:id'),
|
|
285
|
-
__param(0, (0, api_1.User)()),
|
|
286
|
-
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
287
|
-
__param(2, (0, common_1.Body)()),
|
|
288
|
-
__metadata("design:type", Function),
|
|
289
|
-
__metadata("design:paramtypes", [Object, Number, Object]),
|
|
290
|
-
__metadata("design:returntype", void 0)
|
|
291
|
-
], OperationsController.prototype, "updateContractTemplate", null);
|
|
292
|
-
__decorate([
|
|
293
|
-
(0, common_1.Get)('contracts'),
|
|
294
|
-
__param(0, (0, api_1.User)()),
|
|
295
|
-
__metadata("design:type", Function),
|
|
296
|
-
__metadata("design:paramtypes", [Object]),
|
|
297
|
-
__metadata("design:returntype", void 0)
|
|
298
|
-
], OperationsController.prototype, "listContracts", null);
|
|
299
|
-
__decorate([
|
|
300
|
-
(0, common_1.Get)('contracts/:id'),
|
|
301
|
-
__param(0, (0, api_1.User)()),
|
|
302
|
-
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
303
|
-
__metadata("design:type", Function),
|
|
304
|
-
__metadata("design:paramtypes", [Object, Number]),
|
|
305
|
-
__metadata("design:returntype", void 0)
|
|
306
|
-
], OperationsController.prototype, "getContract", null);
|
|
307
|
-
__decorate([
|
|
308
|
-
(0, common_1.Post)('contracts/drafts'),
|
|
309
|
-
__param(0, (0, api_1.User)()),
|
|
310
|
-
__param(1, (0, common_1.Body)()),
|
|
311
|
-
__metadata("design:type", Function),
|
|
312
|
-
__metadata("design:paramtypes", [Object, Object]),
|
|
313
|
-
__metadata("design:returntype", void 0)
|
|
314
|
-
], OperationsController.prototype, "createContractDraft", null);
|
|
315
|
-
__decorate([
|
|
316
|
-
(0, common_1.Post)('contracts'),
|
|
317
|
-
__param(0, (0, api_1.User)()),
|
|
318
|
-
__param(1, (0, common_1.Body)()),
|
|
319
|
-
__metadata("design:type", Function),
|
|
320
|
-
__metadata("design:paramtypes", [Object, Object]),
|
|
321
|
-
__metadata("design:returntype", void 0)
|
|
322
|
-
], OperationsController.prototype, "createContract", null);
|
|
323
|
-
__decorate([
|
|
324
|
-
(0, common_1.Post)('contracts/extract-draft'),
|
|
325
|
-
__param(0, (0, api_1.User)()),
|
|
326
|
-
__param(1, (0, common_1.Body)()),
|
|
327
|
-
__metadata("design:type", Function),
|
|
328
|
-
__metadata("design:paramtypes", [Object, Object]),
|
|
329
|
-
__metadata("design:returntype", void 0)
|
|
330
|
-
], OperationsController.prototype, "extractContractDraft", null);
|
|
331
|
-
__decorate([
|
|
332
|
-
(0, common_1.Post)('contracts/:id/extract-source'),
|
|
333
|
-
__param(0, (0, api_1.User)()),
|
|
334
|
-
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
335
|
-
__param(2, (0, common_1.Body)()),
|
|
336
|
-
__metadata("design:type", Function),
|
|
337
|
-
__metadata("design:paramtypes", [Object, Number, Object]),
|
|
338
|
-
__metadata("design:returntype", void 0)
|
|
339
|
-
], OperationsController.prototype, "extractContractSource", null);
|
|
340
|
-
__decorate([
|
|
341
|
-
(0, common_1.Post)('contracts/:id/generate-content'),
|
|
342
|
-
__param(0, (0, api_1.User)()),
|
|
343
|
-
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
344
|
-
__param(2, (0, common_1.Body)()),
|
|
345
|
-
__metadata("design:type", Function),
|
|
346
|
-
__metadata("design:paramtypes", [Object, Number, Object]),
|
|
347
|
-
__metadata("design:returntype", void 0)
|
|
348
|
-
], OperationsController.prototype, "generateContractContent", null);
|
|
349
|
-
__decorate([
|
|
350
|
-
(0, common_1.Post)('contracts/:id/legal-review'),
|
|
351
|
-
__param(0, (0, api_1.User)()),
|
|
352
|
-
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
353
|
-
__param(2, (0, common_1.Body)()),
|
|
354
|
-
__metadata("design:type", Function),
|
|
355
|
-
__metadata("design:paramtypes", [Object, Number, Object]),
|
|
356
|
-
__metadata("design:returntype", void 0)
|
|
357
|
-
], OperationsController.prototype, "reviewContractLegally", null);
|
|
358
|
-
__decorate([
|
|
359
|
-
(0, common_1.Patch)('contracts/:id'),
|
|
360
|
-
__param(0, (0, api_1.User)()),
|
|
361
|
-
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
362
|
-
__param(2, (0, common_1.Body)()),
|
|
363
|
-
__metadata("design:type", Function),
|
|
364
|
-
__metadata("design:paramtypes", [Object, Number, Object]),
|
|
365
|
-
__metadata("design:returntype", void 0)
|
|
366
|
-
], OperationsController.prototype, "updateContract", null);
|
|
367
|
-
__decorate([
|
|
368
|
-
(0, common_1.Delete)('contracts/:id'),
|
|
369
|
-
__param(0, (0, api_1.User)()),
|
|
370
|
-
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
371
|
-
__metadata("design:type", Function),
|
|
372
|
-
__metadata("design:paramtypes", [Object, Number]),
|
|
373
|
-
__metadata("design:returntype", void 0)
|
|
374
|
-
], OperationsController.prototype, "removeContract", null);
|
|
375
|
-
__decorate([
|
|
376
|
-
(0, common_1.Post)('contracts/:id/generate-pdf'),
|
|
377
|
-
__param(0, (0, api_1.User)()),
|
|
378
|
-
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
379
|
-
__metadata("design:type", Function),
|
|
380
|
-
__metadata("design:paramtypes", [Object, Number]),
|
|
381
|
-
__metadata("design:returntype", void 0)
|
|
382
|
-
], OperationsController.prototype, "generateContractPdf", null);
|
|
383
|
-
__decorate([
|
|
384
|
-
(0, common_1.Get)('timesheets'),
|
|
385
|
-
__param(0, (0, api_1.User)()),
|
|
386
|
-
__metadata("design:type", Function),
|
|
387
|
-
__metadata("design:paramtypes", [Object]),
|
|
388
|
-
__metadata("design:returntype", void 0)
|
|
389
|
-
], OperationsController.prototype, "listTimesheets", null);
|
|
390
|
-
__decorate([
|
|
391
|
-
(0, common_1.Post)('timesheets'),
|
|
392
|
-
__param(0, (0, api_1.User)()),
|
|
393
|
-
__param(1, (0, common_1.Body)()),
|
|
394
|
-
__metadata("design:type", Function),
|
|
395
|
-
__metadata("design:paramtypes", [Object, Object]),
|
|
396
|
-
__metadata("design:returntype", void 0)
|
|
397
|
-
], OperationsController.prototype, "createTimesheet", null);
|
|
398
|
-
__decorate([
|
|
399
|
-
(0, common_1.Patch)('timesheets/:id'),
|
|
400
|
-
__param(0, (0, api_1.User)()),
|
|
401
|
-
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
402
|
-
__param(2, (0, common_1.Body)()),
|
|
403
|
-
__metadata("design:type", Function),
|
|
404
|
-
__metadata("design:paramtypes", [Object, Number, Object]),
|
|
405
|
-
__metadata("design:returntype", void 0)
|
|
406
|
-
], OperationsController.prototype, "updateTimesheet", null);
|
|
407
|
-
__decorate([
|
|
408
|
-
(0, common_1.Post)('timesheets/:id/submit'),
|
|
409
|
-
__param(0, (0, api_1.User)()),
|
|
410
|
-
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
411
|
-
__metadata("design:type", Function),
|
|
412
|
-
__metadata("design:paramtypes", [Object, Number]),
|
|
413
|
-
__metadata("design:returntype", void 0)
|
|
414
|
-
], OperationsController.prototype, "submitTimesheet", null);
|
|
415
|
-
__decorate([
|
|
416
|
-
(0, common_1.Get)('time-off'),
|
|
417
|
-
__param(0, (0, api_1.User)()),
|
|
418
|
-
__metadata("design:type", Function),
|
|
419
|
-
__metadata("design:paramtypes", [Object]),
|
|
420
|
-
__metadata("design:returntype", void 0)
|
|
421
|
-
], OperationsController.prototype, "listTimeOffRequests", null);
|
|
422
|
-
__decorate([
|
|
423
|
-
(0, common_1.Post)('time-off'),
|
|
424
|
-
__param(0, (0, api_1.User)()),
|
|
425
|
-
__param(1, (0, common_1.Body)()),
|
|
426
|
-
__metadata("design:type", Function),
|
|
427
|
-
__metadata("design:paramtypes", [Object, Object]),
|
|
428
|
-
__metadata("design:returntype", void 0)
|
|
429
|
-
], OperationsController.prototype, "createTimeOffRequest", null);
|
|
430
|
-
__decorate([
|
|
431
|
-
(0, common_1.Get)('schedule-adjustments'),
|
|
432
|
-
__param(0, (0, api_1.User)()),
|
|
433
|
-
__metadata("design:type", Function),
|
|
434
|
-
__metadata("design:paramtypes", [Object]),
|
|
435
|
-
__metadata("design:returntype", void 0)
|
|
436
|
-
], OperationsController.prototype, "listScheduleAdjustments", null);
|
|
437
|
-
__decorate([
|
|
438
|
-
(0, common_1.Post)('schedule-adjustments'),
|
|
439
|
-
__param(0, (0, api_1.User)()),
|
|
440
|
-
__param(1, (0, common_1.Body)()),
|
|
441
|
-
__metadata("design:type", Function),
|
|
442
|
-
__metadata("design:paramtypes", [Object, Object]),
|
|
443
|
-
__metadata("design:returntype", void 0)
|
|
444
|
-
], OperationsController.prototype, "createScheduleAdjustmentRequest", null);
|
|
445
|
-
__decorate([
|
|
446
|
-
(0, common_1.Get)('approvals'),
|
|
447
|
-
__param(0, (0, api_1.User)()),
|
|
448
|
-
__metadata("design:type", Function),
|
|
449
|
-
__metadata("design:paramtypes", [Object]),
|
|
450
|
-
__metadata("design:returntype", void 0)
|
|
451
|
-
], OperationsController.prototype, "listApprovals", null);
|
|
452
|
-
__decorate([
|
|
453
|
-
(0, common_1.Post)('approvals/:id/approve'),
|
|
454
|
-
__param(0, (0, api_1.User)()),
|
|
455
|
-
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
456
|
-
__param(2, (0, common_1.Body)()),
|
|
457
|
-
__metadata("design:type", Function),
|
|
458
|
-
__metadata("design:paramtypes", [Object, Number, Object]),
|
|
459
|
-
__metadata("design:returntype", void 0)
|
|
460
|
-
], OperationsController.prototype, "approve", null);
|
|
461
|
-
__decorate([
|
|
462
|
-
(0, common_1.Post)('approvals/:id/reject'),
|
|
463
|
-
__param(0, (0, api_1.User)()),
|
|
464
|
-
__param(1, (0, common_1.Param)('id', common_1.ParseIntPipe)),
|
|
465
|
-
__param(2, (0, common_1.Body)()),
|
|
466
|
-
__metadata("design:type", Function),
|
|
467
|
-
__metadata("design:paramtypes", [Object, Number, Object]),
|
|
468
|
-
__metadata("design:returntype", void 0)
|
|
469
|
-
], OperationsController.prototype, "reject", null);
|
|
470
41
|
__decorate([
|
|
471
42
|
(0, common_1.Post)('integration/examples/accounts-payable'),
|
|
472
43
|
__param(0, (0, api_1.User)()),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operations.controller.js","sourceRoot":"","sources":["../src/operations.controller.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"operations.controller.js","sourceRoot":"","sources":["../src/operations.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,sCAA0C;AAC1C,2CAA6D;AAC7D,6DAAyD;AAIlD,IAAM,oBAAoB,GAA1B,MAAM,oBAAoB;IAC/B,YAA6B,iBAAoC;QAApC,sBAAiB,GAAjB,iBAAiB,CAAmB;IAAG,CAAC;IAGrE,YAAY,CAAS,IAAI;QACvB,OAAO,IAAI,CAAC,iBAAiB,CAAC,YAAY,CAAC,MAAM,CAAC,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,EAAE,KAAI,CAAC,CAAC,CAAC,CAAC;IACpE,CAAC;IAGD,+BAA+B,CAAS,IAAI,EAAU,IAAI;QACxD,OAAO,IAAI,CAAC,iBAAiB,CAAC,+BAA+B,CAC3D,MAAM,CAAC,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,EAAE,KAAI,CAAC,CAAC,EACrB,IAAI,CACL,CAAC;IACJ,CAAC;IAGD,iBAAiB,CAAS,IAAI;QAC5B,OAAO,IAAI,CAAC,iBAAiB,CAAC,OAAO,CAAC,MAAM,CAAC,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,EAAE,KAAI,CAAC,CAAC,CAAC,CAAC;IAC/D,CAAC;CACF,CAAA;AApBY,oDAAoB;AAI/B;IADC,IAAA,YAAG,EAAC,WAAW,CAAC;IACH,WAAA,IAAA,UAAI,GAAE,CAAA;;;;wDAEnB;AAGD;IADC,IAAA,aAAI,EAAC,uCAAuC,CAAC;IACb,WAAA,IAAA,UAAI,GAAE,CAAA;IAAQ,WAAA,IAAA,aAAI,GAAE,CAAA;;;;2EAKpD;AAGD;IADC,IAAA,YAAG,EAAC,MAAM,CAAC;IACO,WAAA,IAAA,UAAI,GAAE,CAAA;;;;6DAExB;+BAnBU,oBAAoB;IAFhC,IAAA,UAAI,GAAE;IACN,IAAA,mBAAU,EAAC,YAAY,CAAC;qCAEyB,sCAAiB;GADtD,oBAAoB,CAoBhC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operations.module.d.ts","sourceRoot":"","sources":["../src/operations.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"operations.module.d.ts","sourceRoot":"","sources":["../src/operations.module.ts"],"names":[],"mappings":"AAkBA,qBA4Ba,gBAAgB;CAAG"}
|
|
@@ -13,9 +13,17 @@ const api_prisma_1 = require("@hed-hog/api-prisma");
|
|
|
13
13
|
const core_1 = require("@hed-hog/core");
|
|
14
14
|
const common_1 = require("@nestjs/common");
|
|
15
15
|
const config_1 = require("@nestjs/config");
|
|
16
|
+
const operations_approvals_controller_1 = require("./controllers/operations-approvals.controller");
|
|
17
|
+
const operations_collaborators_controller_1 = require("./controllers/operations-collaborators.controller");
|
|
18
|
+
const operations_contracts_controller_1 = require("./controllers/operations-contracts.controller");
|
|
19
|
+
const operations_org_structure_controller_1 = require("./controllers/operations-org-structure.controller");
|
|
20
|
+
const operations_projects_controller_1 = require("./controllers/operations-projects.controller");
|
|
21
|
+
const operations_tasks_controller_1 = require("./controllers/operations-tasks.controller");
|
|
22
|
+
const operations_timesheets_controller_1 = require("./controllers/operations-timesheets.controller");
|
|
16
23
|
const operations_controller_1 = require("./operations.controller");
|
|
17
24
|
const operations_proposal_subscriber_1 = require("./operations.proposal.subscriber");
|
|
18
25
|
const operations_service_1 = require("./operations.service");
|
|
26
|
+
const operations_access_service_1 = require("./services/shared/operations-access.service");
|
|
19
27
|
let OperationsModule = class OperationsModule {
|
|
20
28
|
};
|
|
21
29
|
exports.OperationsModule = OperationsModule;
|
|
@@ -31,8 +39,21 @@ exports.OperationsModule = OperationsModule = __decorate([
|
|
|
31
39
|
(0, common_1.forwardRef)(() => core_1.IntegrationModule),
|
|
32
40
|
(0, common_1.forwardRef)(() => core_1.SettingModule),
|
|
33
41
|
],
|
|
34
|
-
controllers: [
|
|
35
|
-
|
|
42
|
+
controllers: [
|
|
43
|
+
operations_controller_1.OperationsController,
|
|
44
|
+
operations_collaborators_controller_1.OperationsCollaboratorsController,
|
|
45
|
+
operations_org_structure_controller_1.OperationsOrgStructureController,
|
|
46
|
+
operations_projects_controller_1.OperationsProjectsController,
|
|
47
|
+
operations_tasks_controller_1.OperationsTasksController,
|
|
48
|
+
operations_contracts_controller_1.OperationsContractsController,
|
|
49
|
+
operations_timesheets_controller_1.OperationsTimesheetsController,
|
|
50
|
+
operations_approvals_controller_1.OperationsApprovalsController,
|
|
51
|
+
],
|
|
52
|
+
providers: [
|
|
53
|
+
operations_service_1.OperationsService,
|
|
54
|
+
operations_access_service_1.OperationsAccessService,
|
|
55
|
+
operations_proposal_subscriber_1.OperationsProposalSubscriber,
|
|
56
|
+
],
|
|
36
57
|
exports: [operations_service_1.OperationsService],
|
|
37
58
|
})
|
|
38
59
|
], OperationsModule);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operations.module.js","sourceRoot":"","sources":["../src/operations.module.ts"],"names":[],"mappings":";;;;;;;;;AAAA,oDAAmD;AACnD,4DAA2D;AAC3D,oDAAmD;AACnD,wCAAuF;AACvF,2CAAoD;AACpD,2CAA8C;AAC9C,mEAA+D;AAC/D,qFAAgF;AAChF,6DAAyD;
|
|
1
|
+
{"version":3,"file":"operations.module.js","sourceRoot":"","sources":["../src/operations.module.ts"],"names":[],"mappings":";;;;;;;;;AAAA,oDAAmD;AACnD,4DAA2D;AAC3D,oDAAmD;AACnD,wCAAuF;AACvF,2CAAoD;AACpD,2CAA8C;AAC9C,mGAA8F;AAC9F,2GAAsG;AACtG,mGAA8F;AAC9F,2GAAqG;AACrG,iGAA4F;AAC5F,2FAAsF;AACtF,qGAAgG;AAChG,mEAA+D;AAC/D,qFAAgF;AAChF,6DAAyD;AACzD,2FAAsF;AA8B/E,IAAM,gBAAgB,GAAtB,MAAM,gBAAgB;CAAG,CAAA;AAAnB,4CAAgB;2BAAhB,gBAAgB;IA5B5B,IAAA,eAAM,EAAC;QACN,OAAO,EAAE;YACP,qBAAY,CAAC,OAAO,EAAE;YACtB,IAAA,mBAAU,EAAC,GAAG,EAAE,CAAC,iCAAgB,CAAC;YAClC,IAAA,mBAAU,EAAC,GAAG,EAAE,CAAC,yBAAY,CAAC;YAC9B,IAAA,mBAAU,EAAC,GAAG,EAAE,CAAC,yBAAY,CAAC;YAC9B,IAAA,mBAAU,EAAC,GAAG,EAAE,CAAC,eAAQ,CAAC;YAC1B,IAAA,mBAAU,EAAC,GAAG,EAAE,CAAC,iBAAU,CAAC;YAC5B,IAAA,mBAAU,EAAC,GAAG,EAAE,CAAC,wBAAiB,CAAC;YACnC,IAAA,mBAAU,EAAC,GAAG,EAAE,CAAC,oBAAa,CAAC;SAChC;QACD,WAAW,EAAE;YACX,4CAAoB;YACpB,uEAAiC;YACjC,sEAAgC;YAChC,6DAA4B;YAC5B,uDAAyB;YACzB,+DAA6B;YAC7B,iEAA8B;YAC9B,+DAA6B;SAC9B;QACD,SAAS,EAAE;YACT,sCAAiB;YACjB,mDAAuB;YACvB,6DAA4B;SAC7B;QACD,OAAO,EAAE,CAAC,sCAAiB,CAAC;KAC7B,CAAC;GACW,gBAAgB,CAAG"}
|