@oneuptime/common 10.0.36 → 10.0.37

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 (46) hide show
  1. package/Models/DatabaseModels/Index.ts +2 -0
  2. package/Models/DatabaseModels/WorkspaceNotificationSummary.ts +819 -0
  3. package/Server/API/StatusPageAPI.ts +7 -0
  4. package/Server/API/WorkspaceNotificationSummaryAPI.ts +67 -0
  5. package/Server/Infrastructure/Postgres/SchemaMigrations/1774355321449-MigrationName.ts +51 -0
  6. package/Server/Infrastructure/Postgres/SchemaMigrations/1774357353502-MigrationName.ts +29 -0
  7. package/Server/Infrastructure/Postgres/SchemaMigrations/Index.ts +4 -0
  8. package/Server/Middleware/MasterAdminAuthorization.ts +55 -0
  9. package/Server/Services/Index.ts +2 -0
  10. package/Server/Services/WorkspaceNotificationSummaryService.ts +1450 -0
  11. package/Server/Utils/Greenlock/Greenlock.ts +1 -0
  12. package/Types/Permission.ts +42 -0
  13. package/Types/Workspace/NotificationSummary/WorkspaceNotificationSummaryItem.ts +13 -0
  14. package/Types/Workspace/NotificationSummary/WorkspaceNotificationSummaryType.ts +8 -0
  15. package/UI/Components/GanttChart/Bar/Index.tsx +23 -5
  16. package/build/dist/Models/DatabaseModels/Index.js +2 -0
  17. package/build/dist/Models/DatabaseModels/Index.js.map +1 -1
  18. package/build/dist/Models/DatabaseModels/WorkspaceNotificationSummary.js +857 -0
  19. package/build/dist/Models/DatabaseModels/WorkspaceNotificationSummary.js.map +1 -0
  20. package/build/dist/Server/API/StatusPageAPI.js +2 -0
  21. package/build/dist/Server/API/StatusPageAPI.js.map +1 -1
  22. package/build/dist/Server/API/WorkspaceNotificationSummaryAPI.js +40 -0
  23. package/build/dist/Server/API/WorkspaceNotificationSummaryAPI.js.map +1 -0
  24. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1774355321449-MigrationName.js +24 -0
  25. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1774355321449-MigrationName.js.map +1 -0
  26. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1774357353502-MigrationName.js +16 -0
  27. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1774357353502-MigrationName.js.map +1 -0
  28. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js +4 -0
  29. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js.map +1 -1
  30. package/build/dist/Server/Middleware/MasterAdminAuthorization.js +25 -0
  31. package/build/dist/Server/Middleware/MasterAdminAuthorization.js.map +1 -0
  32. package/build/dist/Server/Services/Index.js +2 -0
  33. package/build/dist/Server/Services/Index.js.map +1 -1
  34. package/build/dist/Server/Services/WorkspaceNotificationSummaryService.js +1122 -0
  35. package/build/dist/Server/Services/WorkspaceNotificationSummaryService.js.map +1 -0
  36. package/build/dist/Server/Utils/Greenlock/Greenlock.js +1 -0
  37. package/build/dist/Server/Utils/Greenlock/Greenlock.js.map +1 -1
  38. package/build/dist/Types/Permission.js +36 -0
  39. package/build/dist/Types/Permission.js.map +1 -1
  40. package/build/dist/Types/Workspace/NotificationSummary/WorkspaceNotificationSummaryItem.js +14 -0
  41. package/build/dist/Types/Workspace/NotificationSummary/WorkspaceNotificationSummaryItem.js.map +1 -0
  42. package/build/dist/Types/Workspace/NotificationSummary/WorkspaceNotificationSummaryType.js +9 -0
  43. package/build/dist/Types/Workspace/NotificationSummary/WorkspaceNotificationSummaryType.js.map +1 -0
  44. package/build/dist/UI/Components/GanttChart/Bar/Index.js +15 -3
  45. package/build/dist/UI/Components/GanttChart/Bar/Index.js.map +1 -1
  46. package/package.json +1 -1
@@ -232,6 +232,7 @@ import WorkspaceUserAuthToken from "./WorkspaceUserAuthToken";
232
232
  import WorkspaceProjectAuthToken from "./WorkspaceProjectAuthToken";
233
233
  import WorkspaceSetting from "./WorkspaceSetting";
234
234
  import WorkspaceNotificationRule from "./WorkspaceNotificationRule";
235
+ import WorkspaceNotificationSummary from "./WorkspaceNotificationSummary";
235
236
 
236
237
  import OnCallDutyPolicyUserOverride from "./OnCallDutyPolicyUserOverride";
237
238
  import MonitorFeed from "./MonitorFeed";
@@ -490,6 +491,7 @@ const AllModelTypes: Array<{
490
491
 
491
492
  WorkspaceSetting,
492
493
  WorkspaceNotificationRule,
494
+ WorkspaceNotificationSummary,
493
495
 
494
496
  MonitorFeed,
495
497