@oneuptime/common 10.0.36 → 10.0.38

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 (93) 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/TelemetryAPI.ts +10 -0
  5. package/Server/API/WorkspaceNotificationSummaryAPI.ts +67 -0
  6. package/Server/Infrastructure/Postgres/SchemaMigrations/1774355321449-MigrationName.ts +51 -0
  7. package/Server/Infrastructure/Postgres/SchemaMigrations/1774357353502-MigrationName.ts +29 -0
  8. package/Server/Infrastructure/Postgres/SchemaMigrations/Index.ts +4 -0
  9. package/Server/Middleware/MasterAdminAuthorization.ts +55 -0
  10. package/Server/Services/Index.ts +2 -0
  11. package/Server/Services/LogAggregationService.ts +24 -1
  12. package/Server/Services/WorkspaceNotificationSummaryService.ts +1450 -0
  13. package/Server/Utils/Greenlock/Greenlock.ts +1 -0
  14. package/Server/Utils/Telemetry/Telemetry.ts +38 -19
  15. package/Types/Permission.ts +42 -0
  16. package/Types/Workspace/NotificationSummary/WorkspaceNotificationSummaryItem.ts +13 -0
  17. package/Types/Workspace/NotificationSummary/WorkspaceNotificationSummaryType.ts +8 -0
  18. package/UI/Components/Charts/Area/AreaChart.tsx +81 -0
  19. package/UI/Components/Charts/ChartGroup/ChartGroup.tsx +106 -63
  20. package/UI/Components/Charts/ChartLibrary/AreaChart/AreaChart.tsx +986 -0
  21. package/UI/Components/Charts/ChartLibrary/LineChart/LineChart.tsx +1 -1
  22. package/UI/Components/Charts/ChartLibrary/Utils/ChartColors.ts +18 -1
  23. package/UI/Components/Charts/Utils/XAxis.ts +26 -21
  24. package/UI/Components/ConditionsTable/ConditionsTable.tsx +86 -67
  25. package/UI/Components/Dictionary/DictionaryOfStingsViewer.tsx +48 -28
  26. package/UI/Components/Filters/FiltersForm.tsx +19 -13
  27. package/UI/Components/GanttChart/Bar/Index.tsx +23 -5
  28. package/UI/Components/InfoCard/InfoCard.tsx +3 -1
  29. package/UI/Components/LogsViewer/LogsViewer.tsx +9 -4
  30. package/UI/Components/LogsViewer/components/ActiveFilterChips.tsx +29 -2
  31. package/UI/Components/LogsViewer/types.ts +1 -0
  32. package/build/dist/Models/DatabaseModels/Index.js +2 -0
  33. package/build/dist/Models/DatabaseModels/Index.js.map +1 -1
  34. package/build/dist/Models/DatabaseModels/WorkspaceNotificationSummary.js +857 -0
  35. package/build/dist/Models/DatabaseModels/WorkspaceNotificationSummary.js.map +1 -0
  36. package/build/dist/Server/API/StatusPageAPI.js +2 -0
  37. package/build/dist/Server/API/StatusPageAPI.js.map +1 -1
  38. package/build/dist/Server/API/TelemetryAPI.js +8 -0
  39. package/build/dist/Server/API/TelemetryAPI.js.map +1 -1
  40. package/build/dist/Server/API/WorkspaceNotificationSummaryAPI.js +40 -0
  41. package/build/dist/Server/API/WorkspaceNotificationSummaryAPI.js.map +1 -0
  42. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1774355321449-MigrationName.js +24 -0
  43. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1774355321449-MigrationName.js.map +1 -0
  44. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1774357353502-MigrationName.js +16 -0
  45. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1774357353502-MigrationName.js.map +1 -0
  46. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js +4 -0
  47. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js.map +1 -1
  48. package/build/dist/Server/Middleware/MasterAdminAuthorization.js +25 -0
  49. package/build/dist/Server/Middleware/MasterAdminAuthorization.js.map +1 -0
  50. package/build/dist/Server/Services/Index.js +2 -0
  51. package/build/dist/Server/Services/Index.js.map +1 -1
  52. package/build/dist/Server/Services/LogAggregationService.js +12 -0
  53. package/build/dist/Server/Services/LogAggregationService.js.map +1 -1
  54. package/build/dist/Server/Services/WorkspaceNotificationSummaryService.js +1122 -0
  55. package/build/dist/Server/Services/WorkspaceNotificationSummaryService.js.map +1 -0
  56. package/build/dist/Server/Utils/Greenlock/Greenlock.js +1 -0
  57. package/build/dist/Server/Utils/Greenlock/Greenlock.js.map +1 -1
  58. package/build/dist/Server/Utils/Telemetry/Telemetry.js +29 -15
  59. package/build/dist/Server/Utils/Telemetry/Telemetry.js.map +1 -1
  60. package/build/dist/Types/Permission.js +36 -0
  61. package/build/dist/Types/Permission.js.map +1 -1
  62. package/build/dist/Types/Workspace/NotificationSummary/WorkspaceNotificationSummaryItem.js +14 -0
  63. package/build/dist/Types/Workspace/NotificationSummary/WorkspaceNotificationSummaryItem.js.map +1 -0
  64. package/build/dist/Types/Workspace/NotificationSummary/WorkspaceNotificationSummaryType.js +9 -0
  65. package/build/dist/Types/Workspace/NotificationSummary/WorkspaceNotificationSummaryType.js.map +1 -0
  66. package/build/dist/UI/Components/Charts/Area/AreaChart.js +39 -0
  67. package/build/dist/UI/Components/Charts/Area/AreaChart.js.map +1 -0
  68. package/build/dist/UI/Components/Charts/ChartGroup/ChartGroup.js +28 -9
  69. package/build/dist/UI/Components/Charts/ChartGroup/ChartGroup.js.map +1 -1
  70. package/build/dist/UI/Components/Charts/ChartLibrary/AreaChart/AreaChart.js +376 -0
  71. package/build/dist/UI/Components/Charts/ChartLibrary/AreaChart/AreaChart.js.map +1 -0
  72. package/build/dist/UI/Components/Charts/ChartLibrary/LineChart/LineChart.js +1 -1
  73. package/build/dist/UI/Components/Charts/ChartLibrary/LineChart/LineChart.js.map +1 -1
  74. package/build/dist/UI/Components/Charts/ChartLibrary/Utils/ChartColors.js +15 -0
  75. package/build/dist/UI/Components/Charts/ChartLibrary/Utils/ChartColors.js.map +1 -1
  76. package/build/dist/UI/Components/Charts/Utils/XAxis.js +25 -21
  77. package/build/dist/UI/Components/Charts/Utils/XAxis.js.map +1 -1
  78. package/build/dist/UI/Components/ConditionsTable/ConditionsTable.js +51 -30
  79. package/build/dist/UI/Components/ConditionsTable/ConditionsTable.js.map +1 -1
  80. package/build/dist/UI/Components/Dictionary/DictionaryOfStingsViewer.js +23 -11
  81. package/build/dist/UI/Components/Dictionary/DictionaryOfStingsViewer.js.map +1 -1
  82. package/build/dist/UI/Components/Filters/FiltersForm.js +10 -6
  83. package/build/dist/UI/Components/Filters/FiltersForm.js.map +1 -1
  84. package/build/dist/UI/Components/GanttChart/Bar/Index.js +15 -3
  85. package/build/dist/UI/Components/GanttChart/Bar/Index.js.map +1 -1
  86. package/build/dist/UI/Components/InfoCard/InfoCard.js +1 -1
  87. package/build/dist/UI/Components/InfoCard/InfoCard.js.map +1 -1
  88. package/build/dist/UI/Components/LogsViewer/LogsViewer.js +5 -1
  89. package/build/dist/UI/Components/LogsViewer/LogsViewer.js.map +1 -1
  90. package/build/dist/UI/Components/LogsViewer/components/ActiveFilterChips.js +17 -2
  91. package/build/dist/UI/Components/LogsViewer/components/ActiveFilterChips.js.map +1 -1
  92. package/build/dist/UI/Components/LogsViewer/types.js.map +1 -1
  93. 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