@hed-hog/operations 0.0.299 → 0.0.301

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.
Files changed (97) hide show
  1. package/dist/operations.controller.d.ts +713 -31
  2. package/dist/operations.controller.d.ts.map +1 -1
  3. package/dist/operations.controller.js +157 -0
  4. package/dist/operations.controller.js.map +1 -1
  5. package/dist/operations.module.d.ts.map +1 -1
  6. package/dist/operations.module.js +5 -1
  7. package/dist/operations.module.js.map +1 -1
  8. package/dist/operations.proposal.subscriber.d.ts +11 -0
  9. package/dist/operations.proposal.subscriber.d.ts.map +1 -0
  10. package/dist/operations.proposal.subscriber.js +80 -0
  11. package/dist/operations.proposal.subscriber.js.map +1 -0
  12. package/dist/operations.proposal.subscriber.spec.d.ts +2 -0
  13. package/dist/operations.proposal.subscriber.spec.d.ts.map +1 -0
  14. package/dist/operations.proposal.subscriber.spec.js +88 -0
  15. package/dist/operations.proposal.subscriber.spec.js.map +1 -0
  16. package/dist/operations.service.d.ts +490 -46
  17. package/dist/operations.service.d.ts.map +1 -1
  18. package/dist/operations.service.js +3590 -1267
  19. package/dist/operations.service.js.map +1 -1
  20. package/dist/operations.service.spec.d.ts +2 -0
  21. package/dist/operations.service.spec.d.ts.map +1 -0
  22. package/dist/operations.service.spec.js +159 -0
  23. package/dist/operations.service.spec.js.map +1 -0
  24. package/hedhog/data/menu.yaml +232 -198
  25. package/hedhog/data/role.yaml +23 -23
  26. package/hedhog/data/role_route.yaml +39 -0
  27. package/hedhog/data/route.yaml +447 -317
  28. package/hedhog/frontend/app/_components/collaborator-details-screen.tsx.ejs +8 -6
  29. package/hedhog/frontend/app/_components/collaborator-form-screen.tsx.ejs +1163 -327
  30. package/hedhog/frontend/app/_components/collaborator-select-with-create.tsx.ejs +256 -0
  31. package/hedhog/frontend/app/_components/contract-content-editor.tsx.ejs +258 -0
  32. package/hedhog/frontend/app/_components/contract-creation-wizard.tsx.ejs +631 -0
  33. package/hedhog/frontend/app/_components/contract-details-screen.tsx.ejs +353 -27
  34. package/hedhog/frontend/app/_components/contract-form-screen.tsx.ejs +1926 -87
  35. package/hedhog/frontend/app/_components/contract-template-form-screen.tsx.ejs +526 -0
  36. package/hedhog/frontend/app/_components/contract-template-select-with-create.tsx.ejs +247 -0
  37. package/hedhog/frontend/app/_components/contract-wizard-sheet.tsx.ejs +3520 -0
  38. package/hedhog/frontend/app/_components/department-select-with-create.tsx.ejs +370 -0
  39. package/hedhog/frontend/app/_components/person-select-with-create.tsx.ejs +826 -0
  40. package/hedhog/frontend/app/_components/project-form-screen.tsx.ejs +1251 -364
  41. package/hedhog/frontend/app/_components/section-card.tsx.ejs +48 -13
  42. package/hedhog/frontend/app/_lib/api.ts.ejs +2 -5
  43. package/hedhog/frontend/app/_lib/types.ts.ejs +76 -33
  44. package/hedhog/frontend/app/_lib/utils/format.ts.ejs +85 -8
  45. package/hedhog/frontend/app/approvals/page.tsx.ejs +90 -54
  46. package/hedhog/frontend/app/collaborators/[id]/edit/page.tsx.ejs +2 -2
  47. package/hedhog/frontend/app/collaborators/[id]/page.tsx.ejs +2 -2
  48. package/hedhog/frontend/app/collaborators/page.tsx.ejs +597 -140
  49. package/hedhog/frontend/app/contracts/[id]/edit/page.tsx.ejs +2 -2
  50. package/hedhog/frontend/app/contracts/[id]/page.tsx.ejs +2 -2
  51. package/hedhog/frontend/app/contracts/page.tsx.ejs +941 -262
  52. package/hedhog/frontend/app/contracts/templates/page.tsx.ejs +384 -0
  53. package/hedhog/frontend/app/departments/page.tsx.ejs +442 -0
  54. package/hedhog/frontend/app/page.tsx.ejs +36 -12
  55. package/hedhog/frontend/app/projects/[id]/edit/page.tsx.ejs +2 -2
  56. package/hedhog/frontend/app/projects/new/page.tsx.ejs +2 -2
  57. package/hedhog/frontend/app/projects/page.tsx.ejs +264 -102
  58. package/hedhog/frontend/app/schedule-adjustments/page.tsx.ejs +50 -28
  59. package/hedhog/frontend/app/time-off/page.tsx.ejs +57 -31
  60. package/hedhog/frontend/app/timesheets/page.tsx.ejs +85 -42
  61. package/hedhog/frontend/messages/en.json +473 -12
  62. package/hedhog/frontend/messages/pt.json +528 -66
  63. package/hedhog/table/operations_approval.yaml +49 -49
  64. package/hedhog/table/operations_approval_history.yaml +29 -29
  65. package/hedhog/table/operations_collaborator.yaml +87 -67
  66. package/hedhog/table/operations_collaborator_schedule_day.yaml +34 -34
  67. package/hedhog/table/operations_contract.yaml +121 -100
  68. package/hedhog/table/operations_contract_document.yaml +40 -23
  69. package/hedhog/table/operations_contract_financial_term.yaml +40 -40
  70. package/hedhog/table/operations_contract_history.yaml +27 -27
  71. package/hedhog/table/operations_contract_party.yaml +46 -46
  72. package/hedhog/table/operations_contract_revision.yaml +38 -38
  73. package/hedhog/table/operations_contract_signature.yaml +38 -38
  74. package/hedhog/table/operations_contract_template.yaml +58 -0
  75. package/hedhog/table/operations_department.yaml +24 -0
  76. package/hedhog/table/operations_project.yaml +54 -54
  77. package/hedhog/table/operations_project_assignment.yaml +55 -55
  78. package/hedhog/table/operations_schedule_adjustment_day.yaml +34 -34
  79. package/hedhog/table/operations_schedule_adjustment_request.yaml +53 -53
  80. package/hedhog/table/operations_time_off_request.yaml +57 -57
  81. package/hedhog/table/operations_timesheet.yaml +41 -41
  82. package/hedhog/table/operations_timesheet_entry.yaml +40 -40
  83. package/package.json +5 -3
  84. package/src/operations.controller.ts +304 -182
  85. package/src/operations.module.ts +26 -22
  86. package/src/operations.proposal.subscriber.spec.ts +121 -0
  87. package/src/operations.proposal.subscriber.ts +86 -0
  88. package/src/operations.service.spec.ts +210 -0
  89. package/src/operations.service.ts +7317 -3595
  90. package/dist/operations-data.controller.d.ts +0 -139
  91. package/dist/operations-data.controller.d.ts.map +0 -1
  92. package/dist/operations-data.controller.js +0 -113
  93. package/dist/operations-data.controller.js.map +0 -1
  94. package/dist/operations-growth.controller.d.ts +0 -48
  95. package/dist/operations-growth.controller.d.ts.map +0 -1
  96. package/dist/operations-growth.controller.js +0 -90
  97. package/dist/operations-growth.controller.js.map +0 -1
@@ -1,139 +0,0 @@
1
- import { OperationsService } from './operations.service';
2
- export declare class OperationsDataController {
3
- private readonly operationsService;
4
- constructor(operationsService: OperationsService);
5
- getDashboard(): {
6
- module: string;
7
- operationalCollections: {
8
- contracts: {
9
- id: number;
10
- code: string;
11
- name: string;
12
- status: string;
13
- }[];
14
- projects: {
15
- id: number;
16
- code: string;
17
- name: string;
18
- status: string;
19
- }[];
20
- allocations: {
21
- id: number;
22
- employeeId: number;
23
- projectId: number;
24
- weeklyHours: number;
25
- allocationPercent: number;
26
- }[];
27
- tasks: {
28
- id: number;
29
- title: string;
30
- status: string;
31
- }[];
32
- timesheets: {
33
- id: number;
34
- employeeId: number;
35
- status: string;
36
- cycleStartDate: string;
37
- }[];
38
- approvals: {
39
- id: number;
40
- employeeId: number;
41
- status: string;
42
- hours: number;
43
- }[];
44
- };
45
- growthCollections: {
46
- growth: {
47
- topSignals: string[];
48
- note: string;
49
- };
50
- evaluations: {
51
- id: number;
52
- employeeId: number;
53
- cycle: string;
54
- status: string;
55
- generatedScore: number;
56
- }[];
57
- goals: {
58
- id: number;
59
- employeeId: number;
60
- title: string;
61
- status: string;
62
- progressPercent: number;
63
- }[];
64
- certifications: {
65
- id: number;
66
- slug: string;
67
- status: string;
68
- }[];
69
- rewards: {
70
- id: number;
71
- employeeId: number;
72
- rewardType: string;
73
- status: string;
74
- }[];
75
- career: {
76
- id: number;
77
- track: string;
78
- currentLevel: string;
79
- nextLevel: string;
80
- }[];
81
- manager: {
82
- summary: {
83
- promotionEligible: number;
84
- goalsAtRisk: number;
85
- pendingCertifications: number;
86
- };
87
- };
88
- };
89
- };
90
- listContracts(): {
91
- id: number;
92
- code: string;
93
- name: string;
94
- status: string;
95
- }[];
96
- getContract(id: number): {
97
- id: number;
98
- code: string;
99
- name: string;
100
- status: string;
101
- };
102
- listProjects(): {
103
- id: number;
104
- code: string;
105
- name: string;
106
- status: string;
107
- }[];
108
- getProject(id: number): {
109
- id: number;
110
- code: string;
111
- name: string;
112
- status: string;
113
- };
114
- listAllocations(): {
115
- id: number;
116
- employeeId: number;
117
- projectId: number;
118
- weeklyHours: number;
119
- allocationPercent: number;
120
- }[];
121
- listTasks(): {
122
- id: number;
123
- title: string;
124
- status: string;
125
- }[];
126
- listTimesheets(): {
127
- id: number;
128
- employeeId: number;
129
- status: string;
130
- cycleStartDate: string;
131
- }[];
132
- listApprovals(): {
133
- id: number;
134
- employeeId: number;
135
- status: string;
136
- hours: number;
137
- }[];
138
- }
139
- //# sourceMappingURL=operations-data.controller.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"operations-data.controller.d.ts","sourceRoot":"","sources":["../src/operations-data.controller.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAEzD,qBAEa,wBAAwB;IACvB,OAAO,CAAC,QAAQ,CAAC,iBAAiB;gBAAjB,iBAAiB,EAAE,iBAAiB;IAGjE,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKZ,aAAa;;;;;;IAKb,WAAW,CAA4B,EAAE,EAAE,MAAM;;;;;;IAKjD,YAAY;;;;;;IAKZ,UAAU,CAA4B,EAAE,EAAE,MAAM;;;;;;IAKhD,eAAe;;;;;;;IAKf,SAAS;;;;;IAKT,cAAc;;;;;;IAKd,aAAa;;;;;;CAGd"}
@@ -1,113 +0,0 @@
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
- var __param = (this && this.__param) || function (paramIndex, decorator) {
12
- return function (target, key) { decorator(target, key, paramIndex); }
13
- };
14
- Object.defineProperty(exports, "__esModule", { value: true });
15
- exports.OperationsDataController = void 0;
16
- const api_1 = require("@hed-hog/api");
17
- const common_1 = require("@nestjs/common");
18
- const operations_service_1 = require("./operations.service");
19
- let OperationsDataController = class OperationsDataController {
20
- constructor(operationsService) {
21
- this.operationsService = operationsService;
22
- }
23
- getDashboard() {
24
- return this.operationsService.getDashboard();
25
- }
26
- listContracts() {
27
- return this.operationsService.listContracts();
28
- }
29
- getContract(id) {
30
- return this.operationsService.getContractById(id);
31
- }
32
- listProjects() {
33
- return this.operationsService.listProjects();
34
- }
35
- getProject(id) {
36
- return this.operationsService.getProjectById(id);
37
- }
38
- listAllocations() {
39
- return this.operationsService.listAllocations();
40
- }
41
- listTasks() {
42
- return this.operationsService.listTasks();
43
- }
44
- listTimesheets() {
45
- return this.operationsService.listTimesheets();
46
- }
47
- listApprovals() {
48
- return this.operationsService.listApprovals();
49
- }
50
- };
51
- exports.OperationsDataController = OperationsDataController;
52
- __decorate([
53
- (0, common_1.Get)(),
54
- __metadata("design:type", Function),
55
- __metadata("design:paramtypes", []),
56
- __metadata("design:returntype", void 0)
57
- ], OperationsDataController.prototype, "getDashboard", null);
58
- __decorate([
59
- (0, common_1.Get)('contracts'),
60
- __metadata("design:type", Function),
61
- __metadata("design:paramtypes", []),
62
- __metadata("design:returntype", void 0)
63
- ], OperationsDataController.prototype, "listContracts", null);
64
- __decorate([
65
- (0, common_1.Get)('contracts/:id'),
66
- __param(0, (0, common_1.Param)('id', common_1.ParseIntPipe)),
67
- __metadata("design:type", Function),
68
- __metadata("design:paramtypes", [Number]),
69
- __metadata("design:returntype", void 0)
70
- ], OperationsDataController.prototype, "getContract", null);
71
- __decorate([
72
- (0, common_1.Get)('projects'),
73
- __metadata("design:type", Function),
74
- __metadata("design:paramtypes", []),
75
- __metadata("design:returntype", void 0)
76
- ], OperationsDataController.prototype, "listProjects", null);
77
- __decorate([
78
- (0, common_1.Get)('projects/:id'),
79
- __param(0, (0, common_1.Param)('id', common_1.ParseIntPipe)),
80
- __metadata("design:type", Function),
81
- __metadata("design:paramtypes", [Number]),
82
- __metadata("design:returntype", void 0)
83
- ], OperationsDataController.prototype, "getProject", null);
84
- __decorate([
85
- (0, common_1.Get)('allocations'),
86
- __metadata("design:type", Function),
87
- __metadata("design:paramtypes", []),
88
- __metadata("design:returntype", void 0)
89
- ], OperationsDataController.prototype, "listAllocations", null);
90
- __decorate([
91
- (0, common_1.Get)('tasks'),
92
- __metadata("design:type", Function),
93
- __metadata("design:paramtypes", []),
94
- __metadata("design:returntype", void 0)
95
- ], OperationsDataController.prototype, "listTasks", null);
96
- __decorate([
97
- (0, common_1.Get)('timesheets'),
98
- __metadata("design:type", Function),
99
- __metadata("design:paramtypes", []),
100
- __metadata("design:returntype", void 0)
101
- ], OperationsDataController.prototype, "listTimesheets", null);
102
- __decorate([
103
- (0, common_1.Get)('approvals'),
104
- __metadata("design:type", Function),
105
- __metadata("design:paramtypes", []),
106
- __metadata("design:returntype", void 0)
107
- ], OperationsDataController.prototype, "listApprovals", null);
108
- exports.OperationsDataController = OperationsDataController = __decorate([
109
- (0, api_1.Role)(),
110
- (0, common_1.Controller)('operations'),
111
- __metadata("design:paramtypes", [operations_service_1.OperationsService])
112
- ], OperationsDataController);
113
- //# sourceMappingURL=operations-data.controller.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"operations-data.controller.js","sourceRoot":"","sources":["../src/operations-data.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,sCAAoC;AACpC,2CAAsE;AACtE,6DAAyD;AAIlD,IAAM,wBAAwB,GAA9B,MAAM,wBAAwB;IACnC,YAA6B,iBAAoC;QAApC,sBAAiB,GAAjB,iBAAiB,CAAmB;IAAG,CAAC;IAGrE,YAAY;QACV,OAAO,IAAI,CAAC,iBAAiB,CAAC,YAAY,EAAE,CAAC;IAC/C,CAAC;IAGD,aAAa;QACX,OAAO,IAAI,CAAC,iBAAiB,CAAC,aAAa,EAAE,CAAC;IAChD,CAAC;IAGD,WAAW,CAA4B,EAAU;QAC/C,OAAO,IAAI,CAAC,iBAAiB,CAAC,eAAe,CAAC,EAAE,CAAC,CAAC;IACpD,CAAC;IAGD,YAAY;QACV,OAAO,IAAI,CAAC,iBAAiB,CAAC,YAAY,EAAE,CAAC;IAC/C,CAAC;IAGD,UAAU,CAA4B,EAAU;QAC9C,OAAO,IAAI,CAAC,iBAAiB,CAAC,cAAc,CAAC,EAAE,CAAC,CAAC;IACnD,CAAC;IAGD,eAAe;QACb,OAAO,IAAI,CAAC,iBAAiB,CAAC,eAAe,EAAE,CAAC;IAClD,CAAC;IAGD,SAAS;QACP,OAAO,IAAI,CAAC,iBAAiB,CAAC,SAAS,EAAE,CAAC;IAC5C,CAAC;IAGD,cAAc;QACZ,OAAO,IAAI,CAAC,iBAAiB,CAAC,cAAc,EAAE,CAAC;IACjD,CAAC;IAGD,aAAa;QACX,OAAO,IAAI,CAAC,iBAAiB,CAAC,aAAa,EAAE,CAAC;IAChD,CAAC;CACF,CAAA;AA/CY,4DAAwB;AAInC;IADC,IAAA,YAAG,GAAE;;;;4DAGL;AAGD;IADC,IAAA,YAAG,EAAC,WAAW,CAAC;;;;6DAGhB;AAGD;IADC,IAAA,YAAG,EAAC,eAAe,CAAC;IACR,WAAA,IAAA,cAAK,EAAC,IAAI,EAAE,qBAAY,CAAC,CAAA;;;;2DAErC;AAGD;IADC,IAAA,YAAG,EAAC,UAAU,CAAC;;;;4DAGf;AAGD;IADC,IAAA,YAAG,EAAC,cAAc,CAAC;IACR,WAAA,IAAA,cAAK,EAAC,IAAI,EAAE,qBAAY,CAAC,CAAA;;;;0DAEpC;AAGD;IADC,IAAA,YAAG,EAAC,aAAa,CAAC;;;;+DAGlB;AAGD;IADC,IAAA,YAAG,EAAC,OAAO,CAAC;;;;yDAGZ;AAGD;IADC,IAAA,YAAG,EAAC,YAAY,CAAC;;;;8DAGjB;AAGD;IADC,IAAA,YAAG,EAAC,WAAW,CAAC;;;;6DAGhB;mCA9CU,wBAAwB;IAFpC,IAAA,UAAI,GAAE;IACN,IAAA,mBAAU,EAAC,YAAY,CAAC;qCAEyB,sCAAiB;GADtD,wBAAwB,CA+CpC"}
@@ -1,48 +0,0 @@
1
- import { OperationsService } from './operations.service';
2
- export declare class OperationsGrowthController {
3
- private readonly operationsService;
4
- constructor(operationsService: OperationsService);
5
- getGrowthDashboard(): {
6
- topSignals: string[];
7
- note: string;
8
- };
9
- listEvaluations(): {
10
- id: number;
11
- employeeId: number;
12
- cycle: string;
13
- status: string;
14
- generatedScore: number;
15
- }[];
16
- listGoals(): {
17
- id: number;
18
- employeeId: number;
19
- title: string;
20
- status: string;
21
- progressPercent: number;
22
- }[];
23
- listCertifications(): {
24
- id: number;
25
- slug: string;
26
- status: string;
27
- }[];
28
- listRewards(): {
29
- id: number;
30
- employeeId: number;
31
- rewardType: string;
32
- status: string;
33
- }[];
34
- listCareerPaths(): {
35
- id: number;
36
- track: string;
37
- currentLevel: string;
38
- nextLevel: string;
39
- }[];
40
- getManagerOverview(): {
41
- summary: {
42
- promotionEligible: number;
43
- goalsAtRisk: number;
44
- pendingCertifications: number;
45
- };
46
- };
47
- }
48
- //# sourceMappingURL=operations-growth.controller.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"operations-growth.controller.d.ts","sourceRoot":"","sources":["../src/operations-growth.controller.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAEzD,qBAEa,0BAA0B;IACzB,OAAO,CAAC,QAAQ,CAAC,iBAAiB;gBAAjB,iBAAiB,EAAE,iBAAiB;IAGjE,kBAAkB;;;;IAKlB,eAAe;;;;;;;IAKf,SAAS;;;;;;;IAKT,kBAAkB;;;;;IAKlB,WAAW;;;;;;IAKX,eAAe;;;;;;IAKf,kBAAkB;;;;;;;CAGnB"}
@@ -1,90 +0,0 @@
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.OperationsGrowthController = void 0;
13
- const api_1 = require("@hed-hog/api");
14
- const common_1 = require("@nestjs/common");
15
- const operations_service_1 = require("./operations.service");
16
- let OperationsGrowthController = class OperationsGrowthController {
17
- constructor(operationsService) {
18
- this.operationsService = operationsService;
19
- }
20
- getGrowthDashboard() {
21
- return this.operationsService.getGrowthDashboard();
22
- }
23
- listEvaluations() {
24
- return this.operationsService.listEvaluations();
25
- }
26
- listGoals() {
27
- return this.operationsService.listGoals();
28
- }
29
- listCertifications() {
30
- return this.operationsService.listCertifications();
31
- }
32
- listRewards() {
33
- return this.operationsService.listRewards();
34
- }
35
- listCareerPaths() {
36
- return this.operationsService.listCareerPaths();
37
- }
38
- getManagerOverview() {
39
- return this.operationsService.getManagerOverview();
40
- }
41
- };
42
- exports.OperationsGrowthController = OperationsGrowthController;
43
- __decorate([
44
- (0, common_1.Get)('growth'),
45
- __metadata("design:type", Function),
46
- __metadata("design:paramtypes", []),
47
- __metadata("design:returntype", void 0)
48
- ], OperationsGrowthController.prototype, "getGrowthDashboard", null);
49
- __decorate([
50
- (0, common_1.Get)('evaluations'),
51
- __metadata("design:type", Function),
52
- __metadata("design:paramtypes", []),
53
- __metadata("design:returntype", void 0)
54
- ], OperationsGrowthController.prototype, "listEvaluations", null);
55
- __decorate([
56
- (0, common_1.Get)('goals'),
57
- __metadata("design:type", Function),
58
- __metadata("design:paramtypes", []),
59
- __metadata("design:returntype", void 0)
60
- ], OperationsGrowthController.prototype, "listGoals", null);
61
- __decorate([
62
- (0, common_1.Get)('certifications'),
63
- __metadata("design:type", Function),
64
- __metadata("design:paramtypes", []),
65
- __metadata("design:returntype", void 0)
66
- ], OperationsGrowthController.prototype, "listCertifications", null);
67
- __decorate([
68
- (0, common_1.Get)('rewards'),
69
- __metadata("design:type", Function),
70
- __metadata("design:paramtypes", []),
71
- __metadata("design:returntype", void 0)
72
- ], OperationsGrowthController.prototype, "listRewards", null);
73
- __decorate([
74
- (0, common_1.Get)('career'),
75
- __metadata("design:type", Function),
76
- __metadata("design:paramtypes", []),
77
- __metadata("design:returntype", void 0)
78
- ], OperationsGrowthController.prototype, "listCareerPaths", null);
79
- __decorate([
80
- (0, common_1.Get)('manager'),
81
- __metadata("design:type", Function),
82
- __metadata("design:paramtypes", []),
83
- __metadata("design:returntype", void 0)
84
- ], OperationsGrowthController.prototype, "getManagerOverview", null);
85
- exports.OperationsGrowthController = OperationsGrowthController = __decorate([
86
- (0, api_1.Role)(),
87
- (0, common_1.Controller)('operations'),
88
- __metadata("design:paramtypes", [operations_service_1.OperationsService])
89
- ], OperationsGrowthController);
90
- //# sourceMappingURL=operations-growth.controller.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"operations-growth.controller.js","sourceRoot":"","sources":["../src/operations-growth.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,sCAAoC;AACpC,2CAAiD;AACjD,6DAAyD;AAIlD,IAAM,0BAA0B,GAAhC,MAAM,0BAA0B;IACrC,YAA6B,iBAAoC;QAApC,sBAAiB,GAAjB,iBAAiB,CAAmB;IAAG,CAAC;IAGrE,kBAAkB;QAChB,OAAO,IAAI,CAAC,iBAAiB,CAAC,kBAAkB,EAAE,CAAC;IACrD,CAAC;IAGD,eAAe;QACb,OAAO,IAAI,CAAC,iBAAiB,CAAC,eAAe,EAAE,CAAC;IAClD,CAAC;IAGD,SAAS;QACP,OAAO,IAAI,CAAC,iBAAiB,CAAC,SAAS,EAAE,CAAC;IAC5C,CAAC;IAGD,kBAAkB;QAChB,OAAO,IAAI,CAAC,iBAAiB,CAAC,kBAAkB,EAAE,CAAC;IACrD,CAAC;IAGD,WAAW;QACT,OAAO,IAAI,CAAC,iBAAiB,CAAC,WAAW,EAAE,CAAC;IAC9C,CAAC;IAGD,eAAe;QACb,OAAO,IAAI,CAAC,iBAAiB,CAAC,eAAe,EAAE,CAAC;IAClD,CAAC;IAGD,kBAAkB;QAChB,OAAO,IAAI,CAAC,iBAAiB,CAAC,kBAAkB,EAAE,CAAC;IACrD,CAAC;CACF,CAAA;AArCY,gEAA0B;AAIrC;IADC,IAAA,YAAG,EAAC,QAAQ,CAAC;;;;oEAGb;AAGD;IADC,IAAA,YAAG,EAAC,aAAa,CAAC;;;;iEAGlB;AAGD;IADC,IAAA,YAAG,EAAC,OAAO,CAAC;;;;2DAGZ;AAGD;IADC,IAAA,YAAG,EAAC,gBAAgB,CAAC;;;;oEAGrB;AAGD;IADC,IAAA,YAAG,EAAC,SAAS,CAAC;;;;6DAGd;AAGD;IADC,IAAA,YAAG,EAAC,QAAQ,CAAC;;;;iEAGb;AAGD;IADC,IAAA,YAAG,EAAC,SAAS,CAAC;;;;oEAGd;qCApCU,0BAA0B;IAFtC,IAAA,UAAI,GAAE;IACN,IAAA,mBAAU,EAAC,YAAY,CAAC;qCAEyB,sCAAiB;GADtD,0BAA0B,CAqCtC"}