@hed-hog/operations 0.0.331 → 0.0.338

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 (58) hide show
  1. package/dist/controllers/operations-contracts.controller.d.ts +12 -12
  2. package/dist/operations.service.d.ts.map +1 -1
  3. package/dist/operations.service.js +8 -1
  4. package/dist/operations.service.js.map +1 -1
  5. package/dist/operations.service.spec.js +6 -0
  6. package/dist/operations.service.spec.js.map +1 -1
  7. package/hedhog/frontend/app/_components/collaborator-details-screen.tsx.ejs +476 -0
  8. package/hedhog/frontend/app/_components/collaborator-select-with-create.tsx.ejs +261 -0
  9. package/hedhog/frontend/app/_components/collaborator-tasks-tab.tsx.ejs +358 -358
  10. package/hedhog/frontend/app/_components/collaborator-timesheets-tab.tsx.ejs +6 -6
  11. package/hedhog/frontend/app/_components/contract-content-editor.tsx.ejs +258 -0
  12. package/hedhog/frontend/app/_components/my-project-summary-screen.tsx.ejs +84 -84
  13. package/hedhog/frontend/app/_components/person-select-with-create.tsx.ejs +1 -0
  14. package/hedhog/frontend/app/_components/project-cost-report-screen.tsx.ejs +23 -23
  15. package/hedhog/frontend/app/_components/project-details-screen.tsx.ejs +4 -4
  16. package/hedhog/frontend/app/_components/task-detail-sheet.tsx.ejs +803 -803
  17. package/hedhog/frontend/app/_components/task-form-sheet.tsx.ejs +629 -629
  18. package/hedhog/frontend/app/_lib/api.ts.ejs +480 -480
  19. package/hedhog/frontend/app/_lib/types.ts.ejs +5 -5
  20. package/hedhog/frontend/app/my-tasks/page.tsx.ejs +74 -74
  21. package/hedhog/frontend/messages/operations/operations/en.json +2100 -0
  22. package/hedhog/frontend/messages/operations/operations/pt.json +2111 -0
  23. package/hedhog/frontend/widgets/capacity-distribution.tsx.ejs +16 -16
  24. package/hedhog/frontend/widgets/effort-by-project.tsx.ejs +16 -16
  25. package/hedhog/frontend/widgets/headcount-by-area.tsx.ejs +16 -16
  26. package/hedhog/frontend/widgets/index.ts.ejs +25 -25
  27. package/hedhog/frontend/widgets/managed-projects-status.tsx.ejs +16 -16
  28. package/hedhog/frontend/widgets/my-hours-period-kpi.tsx.ejs +16 -16
  29. package/hedhog/frontend/widgets/my-open-requests-kpi.tsx.ejs +16 -16
  30. package/hedhog/frontend/widgets/my-pending-requests-list.tsx.ejs +16 -16
  31. package/hedhog/frontend/widgets/my-project-allocations-kpi.tsx.ejs +16 -16
  32. package/hedhog/frontend/widgets/my-quick-actions.tsx.ejs +16 -16
  33. package/hedhog/frontend/widgets/my-relevant-deadlines.tsx.ejs +16 -16
  34. package/hedhog/frontend/widgets/my-timesheet-status-kpi.tsx.ejs +16 -16
  35. package/hedhog/frontend/widgets/my-weekly-journey.tsx.ejs +16 -16
  36. package/hedhog/frontend/widgets/portfolio-costs-kpi.tsx.ejs +16 -16
  37. package/hedhog/frontend/widgets/portfolio-effort-kpi.tsx.ejs +16 -16
  38. package/hedhog/frontend/widgets/portfolio-projects-kpi.tsx.ejs +16 -16
  39. package/hedhog/frontend/widgets/portfolio-risk-kpi.tsx.ejs +16 -16
  40. package/hedhog/frontend/widgets/project-status-overview.tsx.ejs +16 -16
  41. package/hedhog/frontend/widgets/shared-operations-widget.tsx.ejs +169 -169
  42. package/hedhog/frontend/widgets/strategic-deadlines.tsx.ejs +16 -16
  43. package/hedhog/frontend/widgets/team-approval-queue.tsx.ejs +16 -16
  44. package/hedhog/frontend/widgets/team-capacity-kpi.tsx.ejs +16 -16
  45. package/hedhog/frontend/widgets/team-headcount-kpi.tsx.ejs +16 -16
  46. package/hedhog/frontend/widgets/team-hours-kpi.tsx.ejs +16 -16
  47. package/hedhog/frontend/widgets/team-pending-approvals-kpi.tsx.ejs +16 -16
  48. package/hedhog/frontend/widgets/team-utilization-overview.tsx.ejs +16 -16
  49. package/hedhog/frontend/widgets/team-workload-alerts.tsx.ejs +16 -16
  50. package/hedhog/table/operations_collaborator.yaml +8 -8
  51. package/hedhog/table/operations_task.yaml +76 -76
  52. package/hedhog/table/operations_task_activity.yaml +51 -51
  53. package/package.json +5 -5
  54. package/src/controllers/operations-tasks.controller.ts +156 -156
  55. package/src/dashboard/widgets/MyQuickActions.tsx +22 -22
  56. package/src/dto/create-collaborator.dto.ts +4 -4
  57. package/src/operations.service.spec.ts +1006 -988
  58. package/src/operations.service.ts +8 -1
@@ -9440,7 +9440,14 @@ export class OperationsService {
9440
9440
  from_status,
9441
9441
  to_status,
9442
9442
  created_at
9443
- ) VALUES ($1, $2, $3, $4, $5, NOW())`,
9443
+ ) VALUES (
9444
+ $1,
9445
+ $2,
9446
+ $3::"operations_task_activity_action_bd50457330_enum",
9447
+ $4::"operations_task_activity_from_status_3a69262de6_enum",
9448
+ $5::"operations_task_activity_to_status_1fd99321c8_enum",
9449
+ NOW()
9450
+ )`,
9444
9451
  params.taskId,
9445
9452
  params.actorCollaboratorId,
9446
9453
  params.action,