@hed-hog/operations 0.0.3 → 0.0.285

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 (108) hide show
  1. package/README.md +122 -0
  2. package/dist/index.d.ts +1 -0
  3. package/dist/index.d.ts.map +1 -1
  4. package/dist/index.js +1 -0
  5. package/dist/index.js.map +1 -1
  6. package/dist/operations-data.controller.d.ts +139 -0
  7. package/dist/operations-data.controller.d.ts.map +1 -0
  8. package/dist/operations-data.controller.js +113 -0
  9. package/dist/operations-data.controller.js.map +1 -0
  10. package/dist/operations-growth.controller.d.ts +48 -0
  11. package/dist/operations-growth.controller.d.ts.map +1 -0
  12. package/dist/operations-growth.controller.js +90 -0
  13. package/dist/operations-growth.controller.js.map +1 -0
  14. package/dist/operations.module.d.ts.map +1 -1
  15. package/dist/operations.module.js +10 -4
  16. package/dist/operations.module.js.map +1 -1
  17. package/dist/operations.service.d.ts +178 -0
  18. package/dist/operations.service.d.ts.map +1 -0
  19. package/dist/operations.service.js +134 -0
  20. package/dist/operations.service.js.map +1 -0
  21. package/hedhog/data/menu.yaml +251 -132
  22. package/hedhog/data/operations_career_level.yaml +102 -0
  23. package/hedhog/data/operations_career_track.yaml +8 -0
  24. package/hedhog/data/operations_certification.yaml +38 -0
  25. package/hedhog/data/operations_evaluation_cycle.yaml +18 -0
  26. package/hedhog/data/operations_performance_criterion.yaml +48 -0
  27. package/hedhog/data/role.yaml +14 -7
  28. package/hedhog/data/route.yaml +143 -80
  29. package/hedhog/frontend/app/_components/allocation-calendar.tsx.ejs +56 -56
  30. package/hedhog/frontend/app/_components/kanban-board.tsx.ejs +83 -83
  31. package/hedhog/frontend/app/_components/operations-header.tsx.ejs +29 -29
  32. package/hedhog/frontend/app/_components/section-card.tsx.ejs +32 -32
  33. package/hedhog/frontend/app/_components/status-badge.tsx.ejs +15 -15
  34. package/hedhog/frontend/app/_components/timesheet-entry-dialog.tsx.ejs +142 -142
  35. package/hedhog/frontend/app/_lib/hooks/use-operations-data.ts.ejs +41 -41
  36. package/hedhog/frontend/app/_lib/hooks/use-operations-growth-data.ts.ejs +63 -0
  37. package/hedhog/frontend/app/_lib/mocks/allocations.mock.ts.ejs +74 -74
  38. package/hedhog/frontend/app/_lib/mocks/contracts.mock.ts.ejs +74 -74
  39. package/hedhog/frontend/app/_lib/mocks/operations-growth.mock.ts.ejs +824 -0
  40. package/hedhog/frontend/app/_lib/mocks/projects.mock.ts.ejs +60 -60
  41. package/hedhog/frontend/app/_lib/mocks/tasks.mock.ts.ejs +88 -88
  42. package/hedhog/frontend/app/_lib/mocks/timesheets.mock.ts.ejs +84 -84
  43. package/hedhog/frontend/app/_lib/mocks/users.mock.ts.ejs +67 -67
  44. package/hedhog/frontend/app/_lib/services/contracts.service.ts.ejs +10 -10
  45. package/hedhog/frontend/app/_lib/services/operations-growth.service.ts.ejs +31 -0
  46. package/hedhog/frontend/app/_lib/services/projects.service.ts.ejs +10 -10
  47. package/hedhog/frontend/app/_lib/services/tasks.service.ts.ejs +10 -10
  48. package/hedhog/frontend/app/_lib/services/timesheets.service.ts.ejs +10 -10
  49. package/hedhog/frontend/app/_lib/types/operations-growth.ts.ejs +209 -0
  50. package/hedhog/frontend/app/_lib/types/operations.ts.ejs +95 -95
  51. package/hedhog/frontend/app/_lib/utils/format.ts.ejs +25 -25
  52. package/hedhog/frontend/app/_lib/utils/growth.ts.ejs +62 -0
  53. package/hedhog/frontend/app/_lib/utils/metrics.ts.ejs +103 -103
  54. package/hedhog/frontend/app/_lib/utils/status.ts.ejs +80 -80
  55. package/hedhog/frontend/app/allocations/page.tsx.ejs +154 -99
  56. package/hedhog/frontend/app/approvals/page.tsx.ejs +147 -147
  57. package/hedhog/frontend/app/career/page.tsx.ejs +143 -0
  58. package/hedhog/frontend/app/certifications/page.tsx.ejs +201 -0
  59. package/hedhog/frontend/app/contracts/[id]/page.tsx.ejs +108 -108
  60. package/hedhog/frontend/app/contracts/page.tsx.ejs +180 -124
  61. package/hedhog/frontend/app/evaluations/page.tsx.ejs +277 -0
  62. package/hedhog/frontend/app/goals/page.tsx.ejs +170 -0
  63. package/hedhog/frontend/app/growth/page.tsx.ejs +288 -0
  64. package/hedhog/frontend/app/layout.tsx.ejs +9 -9
  65. package/hedhog/frontend/app/manager/page.tsx.ejs +175 -0
  66. package/hedhog/frontend/app/page.tsx.ejs +177 -177
  67. package/hedhog/frontend/app/projects/[id]/page.tsx.ejs +186 -186
  68. package/hedhog/frontend/app/projects/page.tsx.ejs +111 -111
  69. package/hedhog/frontend/app/rewards/page.tsx.ejs +195 -0
  70. package/hedhog/frontend/app/tasks/page.tsx.ejs +47 -47
  71. package/hedhog/frontend/app/timesheets/page.tsx.ejs +126 -126
  72. package/hedhog/frontend/messages/en.json +152 -142
  73. package/hedhog/frontend/messages/pt.json +152 -142
  74. package/hedhog/table/operations_allocation.yaml +52 -0
  75. package/hedhog/table/operations_calibration_item.yaml +61 -0
  76. package/hedhog/table/operations_calibration_session.yaml +25 -0
  77. package/hedhog/table/operations_career_level.yaml +75 -0
  78. package/hedhog/table/operations_career_track.yaml +21 -0
  79. package/hedhog/table/operations_certification.yaml +48 -0
  80. package/hedhog/table/operations_contract.yaml +57 -0
  81. package/hedhog/table/operations_employee.yaml +64 -0
  82. package/hedhog/table/operations_employee_certification.yaml +43 -0
  83. package/hedhog/table/operations_employee_connect.yaml +61 -0
  84. package/hedhog/table/operations_employee_evaluation.yaml +113 -0
  85. package/hedhog/table/operations_employee_evaluation_item.yaml +39 -0
  86. package/hedhog/table/operations_employee_profile.yaml +80 -0
  87. package/hedhog/table/operations_employee_skill_matrix.yaml +30 -0
  88. package/hedhog/table/operations_evaluation_cycle.yaml +31 -0
  89. package/hedhog/table/operations_goal.yaml +67 -0
  90. package/hedhog/table/operations_goal_progress.yaml +31 -0
  91. package/hedhog/table/operations_performance_criterion.yaml +29 -0
  92. package/hedhog/table/operations_project.yaml +66 -0
  93. package/hedhog/table/operations_promotion_readiness.yaml +49 -0
  94. package/hedhog/table/operations_promotion_recommendation.yaml +63 -0
  95. package/hedhog/table/operations_public_recognition.yaml +46 -0
  96. package/hedhog/table/operations_reward.yaml +100 -0
  97. package/hedhog/table/operations_score_event.yaml +81 -0
  98. package/hedhog/table/operations_task.yaml +60 -0
  99. package/hedhog/table/operations_timesheet.yaml +49 -0
  100. package/hedhog/table/operations_timesheet_entry.yaml +51 -0
  101. package/package.json +4 -4
  102. package/src/index.ts +2 -1
  103. package/src/language/en.json +8 -8
  104. package/src/language/pt.json +8 -8
  105. package/src/operations-data.controller.ts +54 -0
  106. package/src/operations-growth.controller.ts +44 -0
  107. package/src/operations.module.ts +21 -15
  108. package/src/operations.service.ts +137 -0
@@ -0,0 +1,178 @@
1
+ export declare class OperationsService {
2
+ getDashboard(): {
3
+ module: string;
4
+ operationalCollections: {
5
+ contracts: {
6
+ id: number;
7
+ code: string;
8
+ name: string;
9
+ status: string;
10
+ }[];
11
+ projects: {
12
+ id: number;
13
+ code: string;
14
+ name: string;
15
+ status: string;
16
+ }[];
17
+ allocations: {
18
+ id: number;
19
+ employeeId: number;
20
+ projectId: number;
21
+ weeklyHours: number;
22
+ allocationPercent: number;
23
+ }[];
24
+ tasks: {
25
+ id: number;
26
+ title: string;
27
+ status: string;
28
+ }[];
29
+ timesheets: {
30
+ id: number;
31
+ employeeId: number;
32
+ status: string;
33
+ cycleStartDate: string;
34
+ }[];
35
+ approvals: {
36
+ id: number;
37
+ employeeId: number;
38
+ status: string;
39
+ hours: number;
40
+ }[];
41
+ };
42
+ growthCollections: {
43
+ growth: {
44
+ topSignals: string[];
45
+ note: string;
46
+ };
47
+ evaluations: {
48
+ id: number;
49
+ employeeId: number;
50
+ cycle: string;
51
+ status: string;
52
+ generatedScore: number;
53
+ }[];
54
+ goals: {
55
+ id: number;
56
+ employeeId: number;
57
+ title: string;
58
+ status: string;
59
+ progressPercent: number;
60
+ }[];
61
+ certifications: {
62
+ id: number;
63
+ slug: string;
64
+ status: string;
65
+ }[];
66
+ rewards: {
67
+ id: number;
68
+ employeeId: number;
69
+ rewardType: string;
70
+ status: string;
71
+ }[];
72
+ career: {
73
+ id: number;
74
+ track: string;
75
+ currentLevel: string;
76
+ nextLevel: string;
77
+ }[];
78
+ manager: {
79
+ summary: {
80
+ promotionEligible: number;
81
+ goalsAtRisk: number;
82
+ pendingCertifications: number;
83
+ };
84
+ };
85
+ };
86
+ };
87
+ listContracts(): {
88
+ id: number;
89
+ code: string;
90
+ name: string;
91
+ status: string;
92
+ }[];
93
+ getContractById(id: number): {
94
+ id: number;
95
+ code: string;
96
+ name: string;
97
+ status: string;
98
+ };
99
+ listProjects(): {
100
+ id: number;
101
+ code: string;
102
+ name: string;
103
+ status: string;
104
+ }[];
105
+ getProjectById(id: number): {
106
+ id: number;
107
+ code: string;
108
+ name: string;
109
+ status: string;
110
+ };
111
+ listAllocations(): {
112
+ id: number;
113
+ employeeId: number;
114
+ projectId: number;
115
+ weeklyHours: number;
116
+ allocationPercent: number;
117
+ }[];
118
+ listTasks(): {
119
+ id: number;
120
+ title: string;
121
+ status: string;
122
+ }[];
123
+ listTimesheets(): {
124
+ id: number;
125
+ employeeId: number;
126
+ status: string;
127
+ cycleStartDate: string;
128
+ }[];
129
+ listApprovals(): {
130
+ id: number;
131
+ employeeId: number;
132
+ status: string;
133
+ hours: number;
134
+ }[];
135
+ getGrowthDashboard(): {
136
+ topSignals: string[];
137
+ note: string;
138
+ };
139
+ listEvaluations(): {
140
+ id: number;
141
+ employeeId: number;
142
+ cycle: string;
143
+ status: string;
144
+ generatedScore: number;
145
+ }[];
146
+ listGoals(): {
147
+ id: number;
148
+ employeeId: number;
149
+ title: string;
150
+ status: string;
151
+ progressPercent: number;
152
+ }[];
153
+ listCertifications(): {
154
+ id: number;
155
+ slug: string;
156
+ status: string;
157
+ }[];
158
+ listRewards(): {
159
+ id: number;
160
+ employeeId: number;
161
+ rewardType: string;
162
+ status: string;
163
+ }[];
164
+ listCareerPaths(): {
165
+ id: number;
166
+ track: string;
167
+ currentLevel: string;
168
+ nextLevel: string;
169
+ }[];
170
+ getManagerOverview(): {
171
+ summary: {
172
+ promotionEligible: number;
173
+ goalsAtRisk: number;
174
+ pendingCertifications: number;
175
+ };
176
+ };
177
+ }
178
+ //# sourceMappingURL=operations.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"operations.service.d.ts","sourceRoot":"","sources":["../src/operations.service.ts"],"names":[],"mappings":"AA+DA,qBACa,iBAAiB;IAK5B,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAQZ,aAAa;;;;;;IAIb,eAAe,CAAC,EAAE,EAAE,MAAM;;;;;;IAI1B,YAAY;;;;;;IAIZ,cAAc,CAAC,EAAE,EAAE,MAAM;;;;;;IAIzB,eAAe;;;;;;;IAIf,SAAS;;;;;IAIT,cAAc;;;;;;IAId,aAAa;;;;;;IAIb,kBAAkB;;;;IAIlB,eAAe;;;;;;;IAIf,SAAS;;;;;;;IAIT,kBAAkB;;;;;IAIlB,WAAW;;;;;;IAIX,eAAe;;;;;;IAIf,kBAAkB;;;;;;;CAGnB"}
@@ -0,0 +1,134 @@
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
+ Object.defineProperty(exports, "__esModule", { value: true });
9
+ exports.OperationsService = void 0;
10
+ const common_1 = require("@nestjs/common");
11
+ const operationalCollections = {
12
+ contracts: [
13
+ { id: 1, code: 'CTR-001', name: 'Northwind Retainer', status: 'active' },
14
+ { id: 2, code: 'CTR-002', name: 'BluePeak Migration', status: 'renewal' },
15
+ ],
16
+ projects: [
17
+ { id: 1, code: 'PRJ-OPS-1', name: 'Phoenix Platform Rollout', status: 'active' },
18
+ { id: 2, code: 'PRJ-OPS-2', name: 'Northwind Service Desk', status: 'at_risk' },
19
+ ],
20
+ allocations: [
21
+ { id: 1, employeeId: 1, projectId: 1, weeklyHours: 30, allocationPercent: 75 },
22
+ { id: 2, employeeId: 2, projectId: 2, weeklyHours: 20, allocationPercent: 50 },
23
+ ],
24
+ tasks: [
25
+ { id: 1, title: 'Deploy onboarding workflow', status: 'review' },
26
+ { id: 2, title: 'Refine support KPI dashboard', status: 'in_progress' },
27
+ ],
28
+ timesheets: [
29
+ { id: 1, employeeId: 1, status: 'submitted', cycleStartDate: '2026-03-09' },
30
+ { id: 2, employeeId: 2, status: 'approved', cycleStartDate: '2026-03-09' },
31
+ ],
32
+ approvals: [
33
+ { id: 1, employeeId: 1, status: 'pending', hours: 8 },
34
+ { id: 2, employeeId: 3, status: 'pending', hours: 6.5 },
35
+ ],
36
+ };
37
+ const growthCollections = {
38
+ growth: {
39
+ topSignals: ['score_events', 'career_tracks', 'goals', 'recognitions'],
40
+ note: 'Foundation endpoint for the employee growth dashboard.',
41
+ },
42
+ evaluations: [
43
+ { id: 1, employeeId: 1, cycle: '2026 H1 Growth Cycle', status: 'finalized', generatedScore: 84 },
44
+ { id: 2, employeeId: 2, cycle: '2026 Delivery Sprint Review', status: 'submitted', generatedScore: 72 },
45
+ ],
46
+ goals: [
47
+ { id: 1, employeeId: 1, title: 'Reduce rework under 5%', status: 'active', progressPercent: 68 },
48
+ { id: 2, employeeId: 2, title: 'Close Scrum certification', status: 'at_risk', progressPercent: 35 },
49
+ ],
50
+ certifications: [
51
+ { id: 1, slug: 'scrum-master-foundations', status: 'achieved' },
52
+ { id: 2, slug: 'advanced-quality-assurance', status: 'planned' },
53
+ ],
54
+ rewards: [
55
+ { id: 1, employeeId: 1, rewardType: 'bonus', status: 'granted' },
56
+ { id: 2, employeeId: 3, rewardType: 'recognition', status: 'granted' },
57
+ ],
58
+ career: [
59
+ { id: 1, track: 'Delivery', currentLevel: 'Consultant', nextLevel: 'Senior Consultant' },
60
+ { id: 2, track: 'Specialist', currentLevel: 'Specialist II', nextLevel: 'Principal Specialist' },
61
+ ],
62
+ manager: {
63
+ summary: {
64
+ promotionEligible: 2,
65
+ goalsAtRisk: 3,
66
+ pendingCertifications: 4,
67
+ },
68
+ },
69
+ };
70
+ let OperationsService = class OperationsService {
71
+ // TODO: Replace static collections with Prisma queries after the first schema apply.
72
+ // TODO: Promotion must not be derived from score alone; score remains only a support signal.
73
+ // TODO: Certifications are supporting evidence and do not guarantee promotion on their own.
74
+ // TODO: Future readiness logic must consider individual, team, and org impact, plus time operating at the next level and calibration outcomes.
75
+ getDashboard() {
76
+ return {
77
+ module: 'operations',
78
+ operationalCollections,
79
+ growthCollections,
80
+ };
81
+ }
82
+ listContracts() {
83
+ return operationalCollections.contracts;
84
+ }
85
+ getContractById(id) {
86
+ var _a;
87
+ return (_a = operationalCollections.contracts.find((item) => item.id === id)) !== null && _a !== void 0 ? _a : null;
88
+ }
89
+ listProjects() {
90
+ return operationalCollections.projects;
91
+ }
92
+ getProjectById(id) {
93
+ var _a;
94
+ return (_a = operationalCollections.projects.find((item) => item.id === id)) !== null && _a !== void 0 ? _a : null;
95
+ }
96
+ listAllocations() {
97
+ return operationalCollections.allocations;
98
+ }
99
+ listTasks() {
100
+ return operationalCollections.tasks;
101
+ }
102
+ listTimesheets() {
103
+ return operationalCollections.timesheets;
104
+ }
105
+ listApprovals() {
106
+ return operationalCollections.approvals;
107
+ }
108
+ getGrowthDashboard() {
109
+ return growthCollections.growth;
110
+ }
111
+ listEvaluations() {
112
+ return growthCollections.evaluations;
113
+ }
114
+ listGoals() {
115
+ return growthCollections.goals;
116
+ }
117
+ listCertifications() {
118
+ return growthCollections.certifications;
119
+ }
120
+ listRewards() {
121
+ return growthCollections.rewards;
122
+ }
123
+ listCareerPaths() {
124
+ return growthCollections.career;
125
+ }
126
+ getManagerOverview() {
127
+ return growthCollections.manager;
128
+ }
129
+ };
130
+ exports.OperationsService = OperationsService;
131
+ exports.OperationsService = OperationsService = __decorate([
132
+ (0, common_1.Injectable)()
133
+ ], OperationsService);
134
+ //# sourceMappingURL=operations.service.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"operations.service.js","sourceRoot":"","sources":["../src/operations.service.ts"],"names":[],"mappings":"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"}
@@ -1,132 +1,251 @@
1
- - icon: briefcase-business
2
- name:
3
- en: Operations
4
- pt: Operacoes
5
- slug: /operations
6
- url: /operations
7
- order: 110
8
- relations:
9
- role:
10
- - where:
11
- slug: admin
12
- - where:
13
- slug: admin-operations
14
-
15
- - menu_id:
16
- where:
17
- slug: /operations
18
- icon: layout-dashboard
19
- url: /operations
20
- name:
21
- en: Dashboard
22
- pt: Dashboard
23
- slug: /operations/dashboard
24
- order: 111
25
- relations:
26
- role:
27
- - where:
28
- slug: admin
29
- - where:
30
- slug: admin-operations
31
-
32
- - menu_id:
33
- where:
34
- slug: /operations
35
- icon: file-text
36
- url: /operations/contracts
37
- name:
38
- en: Contracts
39
- pt: Contratos
40
- slug: /operations/contracts
41
- order: 112
42
- relations:
43
- role:
44
- - where:
45
- slug: admin
46
- - where:
47
- slug: admin-operations
48
-
49
- - menu_id:
50
- where:
51
- slug: /operations
52
- icon: folders
53
- url: /operations/projects
54
- name:
55
- en: Projects
56
- pt: Projetos
57
- slug: /operations/projects
58
- order: 113
59
- relations:
60
- role:
61
- - where:
62
- slug: admin
63
- - where:
64
- slug: admin-operations
65
-
66
- - menu_id:
67
- where:
68
- slug: /operations
69
- icon: users-round
70
- url: /operations/allocations
71
- name:
72
- en: Allocations
73
- pt: Alocacoes
74
- slug: /operations/allocations
75
- order: 114
76
- relations:
77
- role:
78
- - where:
79
- slug: admin
80
- - where:
81
- slug: admin-operations
82
-
83
- - menu_id:
84
- where:
85
- slug: /operations
86
- icon: kanban-square
87
- url: /operations/tasks
88
- name:
89
- en: Tasks
90
- pt: Tarefas
91
- slug: /operations/tasks
92
- order: 115
93
- relations:
94
- role:
95
- - where:
96
- slug: admin
97
- - where:
98
- slug: admin-operations
99
-
100
- - menu_id:
101
- where:
102
- slug: /operations
103
- icon: clock-3
104
- url: /operations/timesheets
105
- name:
106
- en: Timesheets
107
- pt: Timesheets
108
- slug: /operations/timesheets
109
- order: 116
110
- relations:
111
- role:
112
- - where:
113
- slug: admin
114
- - where:
115
- slug: admin-operations
116
-
117
- - menu_id:
118
- where:
119
- slug: /operations
120
- icon: file-check-2
121
- url: /operations/approvals
122
- name:
123
- en: Approvals
124
- pt: Aprovacoes
125
- slug: /operations/approvals
126
- order: 117
127
- relations:
128
- role:
129
- - where:
130
- slug: admin
131
- - where:
132
- slug: admin-operations
1
+ - icon: briefcase-business
2
+ name:
3
+ en: Operations
4
+ pt: Operacoes
5
+ slug: /operations
6
+ url: /operations
7
+ order: 110
8
+ relations:
9
+ role:
10
+ - where:
11
+ slug: admin
12
+ - where:
13
+ slug: admin-operations
14
+
15
+ - menu_id:
16
+ where:
17
+ slug: /operations
18
+ icon: layout-dashboard
19
+ url: /operations
20
+ name:
21
+ en: Dashboard
22
+ pt: Dashboard
23
+ slug: /operations/dashboard
24
+ order: 111
25
+ relations:
26
+ role:
27
+ - where:
28
+ slug: admin
29
+ - where:
30
+ slug: admin-operations
31
+
32
+ - menu_id:
33
+ where:
34
+ slug: /operations
35
+ icon: file-text
36
+ url: /operations/contracts
37
+ name:
38
+ en: Contracts
39
+ pt: Contratos
40
+ slug: /operations/contracts
41
+ order: 112
42
+ relations:
43
+ role:
44
+ - where:
45
+ slug: admin
46
+ - where:
47
+ slug: admin-operations
48
+
49
+ - menu_id:
50
+ where:
51
+ slug: /operations
52
+ icon: folders
53
+ url: /operations/projects
54
+ name:
55
+ en: Projects
56
+ pt: Projetos
57
+ slug: /operations/projects
58
+ order: 113
59
+ relations:
60
+ role:
61
+ - where:
62
+ slug: admin
63
+ - where:
64
+ slug: admin-operations
65
+
66
+ - menu_id:
67
+ where:
68
+ slug: /operations
69
+ icon: users-round
70
+ url: /operations/allocations
71
+ name:
72
+ en: Allocations
73
+ pt: Alocacoes
74
+ slug: /operations/allocations
75
+ order: 114
76
+ relations:
77
+ role:
78
+ - where:
79
+ slug: admin
80
+ - where:
81
+ slug: admin-operations
82
+
83
+ - menu_id:
84
+ where:
85
+ slug: /operations
86
+ icon: kanban-square
87
+ url: /operations/tasks
88
+ name:
89
+ en: Tasks
90
+ pt: Tarefas
91
+ slug: /operations/tasks
92
+ order: 115
93
+ relations:
94
+ role:
95
+ - where:
96
+ slug: admin
97
+ - where:
98
+ slug: admin-operations
99
+
100
+ - menu_id:
101
+ where:
102
+ slug: /operations
103
+ icon: clock-3
104
+ url: /operations/timesheets
105
+ name:
106
+ en: Timesheets
107
+ pt: Timesheets
108
+ slug: /operations/timesheets
109
+ order: 116
110
+ relations:
111
+ role:
112
+ - where:
113
+ slug: admin
114
+ - where:
115
+ slug: admin-operations
116
+
117
+ - menu_id:
118
+ where:
119
+ slug: /operations
120
+ icon: file-check-2
121
+ url: /operations/approvals
122
+ name:
123
+ en: Approvals
124
+ pt: Aprovacoes
125
+ slug: /operations/approvals
126
+ order: 117
127
+ relations:
128
+ role:
129
+ - where:
130
+ slug: admin
131
+ - where:
132
+ slug: admin-operations
133
+
134
+ - menu_id:
135
+ where:
136
+ slug: /operations
137
+ icon: trending-up
138
+ url: /operations/growth
139
+ name:
140
+ en: Growth Dashboard
141
+ pt: Dashboard de Evolucao
142
+ slug: /operations/growth
143
+ order: 118
144
+ relations:
145
+ role:
146
+ - where:
147
+ slug: admin
148
+ - where:
149
+ slug: admin-operations
150
+
151
+ - menu_id:
152
+ where:
153
+ slug: /operations
154
+ icon: clipboard-list
155
+ url: /operations/evaluations
156
+ name:
157
+ en: Evaluations
158
+ pt: Avaliacoes
159
+ slug: /operations/evaluations
160
+ order: 119
161
+ relations:
162
+ role:
163
+ - where:
164
+ slug: admin
165
+ - where:
166
+ slug: admin-operations
167
+
168
+ - menu_id:
169
+ where:
170
+ slug: /operations
171
+ icon: target
172
+ url: /operations/goals
173
+ name:
174
+ en: Goals
175
+ pt: Metas
176
+ slug: /operations/goals
177
+ order: 120
178
+ relations:
179
+ role:
180
+ - where:
181
+ slug: admin
182
+ - where:
183
+ slug: admin-operations
184
+
185
+ - menu_id:
186
+ where:
187
+ slug: /operations
188
+ icon: badge-check
189
+ url: /operations/certifications
190
+ name:
191
+ en: Certifications
192
+ pt: Certificacoes
193
+ slug: /operations/certifications
194
+ order: 121
195
+ relations:
196
+ role:
197
+ - where:
198
+ slug: admin
199
+ - where:
200
+ slug: admin-operations
201
+
202
+ - menu_id:
203
+ where:
204
+ slug: /operations
205
+ icon: gift
206
+ url: /operations/rewards
207
+ name:
208
+ en: Rewards and Recognition
209
+ pt: Recompensas e Reconhecimentos
210
+ slug: /operations/rewards
211
+ order: 122
212
+ relations:
213
+ role:
214
+ - where:
215
+ slug: admin
216
+ - where:
217
+ slug: admin-operations
218
+
219
+ - menu_id:
220
+ where:
221
+ slug: /operations
222
+ icon: route
223
+ url: /operations/career
224
+ name:
225
+ en: Career Path
226
+ pt: Trilha de Carreira
227
+ slug: /operations/career
228
+ order: 123
229
+ relations:
230
+ role:
231
+ - where:
232
+ slug: admin
233
+ - where:
234
+ slug: admin-operations
235
+
236
+ - menu_id:
237
+ where:
238
+ slug: /operations
239
+ icon: users
240
+ url: /operations/manager
241
+ name:
242
+ en: Manager Overview
243
+ pt: Visao Gestor RH
244
+ slug: /operations/manager
245
+ order: 124
246
+ relations:
247
+ role:
248
+ - where:
249
+ slug: admin
250
+ - where:
251
+ slug: admin-operations