@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.
- package/Models/DatabaseModels/Index.ts +2 -0
- package/Models/DatabaseModels/WorkspaceNotificationSummary.ts +819 -0
- package/Server/API/StatusPageAPI.ts +7 -0
- package/Server/API/TelemetryAPI.ts +10 -0
- package/Server/API/WorkspaceNotificationSummaryAPI.ts +67 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1774355321449-MigrationName.ts +51 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1774357353502-MigrationName.ts +29 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/Index.ts +4 -0
- package/Server/Middleware/MasterAdminAuthorization.ts +55 -0
- package/Server/Services/Index.ts +2 -0
- package/Server/Services/LogAggregationService.ts +24 -1
- package/Server/Services/WorkspaceNotificationSummaryService.ts +1450 -0
- package/Server/Utils/Greenlock/Greenlock.ts +1 -0
- package/Server/Utils/Telemetry/Telemetry.ts +38 -19
- package/Types/Permission.ts +42 -0
- package/Types/Workspace/NotificationSummary/WorkspaceNotificationSummaryItem.ts +13 -0
- package/Types/Workspace/NotificationSummary/WorkspaceNotificationSummaryType.ts +8 -0
- package/UI/Components/Charts/Area/AreaChart.tsx +81 -0
- package/UI/Components/Charts/ChartGroup/ChartGroup.tsx +106 -63
- package/UI/Components/Charts/ChartLibrary/AreaChart/AreaChart.tsx +986 -0
- package/UI/Components/Charts/ChartLibrary/LineChart/LineChart.tsx +1 -1
- package/UI/Components/Charts/ChartLibrary/Utils/ChartColors.ts +18 -1
- package/UI/Components/Charts/Utils/XAxis.ts +26 -21
- package/UI/Components/ConditionsTable/ConditionsTable.tsx +86 -67
- package/UI/Components/Dictionary/DictionaryOfStingsViewer.tsx +48 -28
- package/UI/Components/Filters/FiltersForm.tsx +19 -13
- package/UI/Components/GanttChart/Bar/Index.tsx +23 -5
- package/UI/Components/InfoCard/InfoCard.tsx +3 -1
- package/UI/Components/LogsViewer/LogsViewer.tsx +9 -4
- package/UI/Components/LogsViewer/components/ActiveFilterChips.tsx +29 -2
- package/UI/Components/LogsViewer/types.ts +1 -0
- package/build/dist/Models/DatabaseModels/Index.js +2 -0
- package/build/dist/Models/DatabaseModels/Index.js.map +1 -1
- package/build/dist/Models/DatabaseModels/WorkspaceNotificationSummary.js +857 -0
- package/build/dist/Models/DatabaseModels/WorkspaceNotificationSummary.js.map +1 -0
- package/build/dist/Server/API/StatusPageAPI.js +2 -0
- package/build/dist/Server/API/StatusPageAPI.js.map +1 -1
- package/build/dist/Server/API/TelemetryAPI.js +8 -0
- package/build/dist/Server/API/TelemetryAPI.js.map +1 -1
- package/build/dist/Server/API/WorkspaceNotificationSummaryAPI.js +40 -0
- package/build/dist/Server/API/WorkspaceNotificationSummaryAPI.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1774355321449-MigrationName.js +24 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1774355321449-MigrationName.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1774357353502-MigrationName.js +16 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1774357353502-MigrationName.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js +4 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js.map +1 -1
- package/build/dist/Server/Middleware/MasterAdminAuthorization.js +25 -0
- package/build/dist/Server/Middleware/MasterAdminAuthorization.js.map +1 -0
- package/build/dist/Server/Services/Index.js +2 -0
- package/build/dist/Server/Services/Index.js.map +1 -1
- package/build/dist/Server/Services/LogAggregationService.js +12 -0
- package/build/dist/Server/Services/LogAggregationService.js.map +1 -1
- package/build/dist/Server/Services/WorkspaceNotificationSummaryService.js +1122 -0
- package/build/dist/Server/Services/WorkspaceNotificationSummaryService.js.map +1 -0
- package/build/dist/Server/Utils/Greenlock/Greenlock.js +1 -0
- package/build/dist/Server/Utils/Greenlock/Greenlock.js.map +1 -1
- package/build/dist/Server/Utils/Telemetry/Telemetry.js +29 -15
- package/build/dist/Server/Utils/Telemetry/Telemetry.js.map +1 -1
- package/build/dist/Types/Permission.js +36 -0
- package/build/dist/Types/Permission.js.map +1 -1
- package/build/dist/Types/Workspace/NotificationSummary/WorkspaceNotificationSummaryItem.js +14 -0
- package/build/dist/Types/Workspace/NotificationSummary/WorkspaceNotificationSummaryItem.js.map +1 -0
- package/build/dist/Types/Workspace/NotificationSummary/WorkspaceNotificationSummaryType.js +9 -0
- package/build/dist/Types/Workspace/NotificationSummary/WorkspaceNotificationSummaryType.js.map +1 -0
- package/build/dist/UI/Components/Charts/Area/AreaChart.js +39 -0
- package/build/dist/UI/Components/Charts/Area/AreaChart.js.map +1 -0
- package/build/dist/UI/Components/Charts/ChartGroup/ChartGroup.js +28 -9
- package/build/dist/UI/Components/Charts/ChartGroup/ChartGroup.js.map +1 -1
- package/build/dist/UI/Components/Charts/ChartLibrary/AreaChart/AreaChart.js +376 -0
- package/build/dist/UI/Components/Charts/ChartLibrary/AreaChart/AreaChart.js.map +1 -0
- package/build/dist/UI/Components/Charts/ChartLibrary/LineChart/LineChart.js +1 -1
- package/build/dist/UI/Components/Charts/ChartLibrary/LineChart/LineChart.js.map +1 -1
- package/build/dist/UI/Components/Charts/ChartLibrary/Utils/ChartColors.js +15 -0
- package/build/dist/UI/Components/Charts/ChartLibrary/Utils/ChartColors.js.map +1 -1
- package/build/dist/UI/Components/Charts/Utils/XAxis.js +25 -21
- package/build/dist/UI/Components/Charts/Utils/XAxis.js.map +1 -1
- package/build/dist/UI/Components/ConditionsTable/ConditionsTable.js +51 -30
- package/build/dist/UI/Components/ConditionsTable/ConditionsTable.js.map +1 -1
- package/build/dist/UI/Components/Dictionary/DictionaryOfStingsViewer.js +23 -11
- package/build/dist/UI/Components/Dictionary/DictionaryOfStingsViewer.js.map +1 -1
- package/build/dist/UI/Components/Filters/FiltersForm.js +10 -6
- package/build/dist/UI/Components/Filters/FiltersForm.js.map +1 -1
- package/build/dist/UI/Components/GanttChart/Bar/Index.js +15 -3
- package/build/dist/UI/Components/GanttChart/Bar/Index.js.map +1 -1
- package/build/dist/UI/Components/InfoCard/InfoCard.js +1 -1
- package/build/dist/UI/Components/InfoCard/InfoCard.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/LogsViewer.js +5 -1
- package/build/dist/UI/Components/LogsViewer/LogsViewer.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/components/ActiveFilterChips.js +17 -2
- package/build/dist/UI/Components/LogsViewer/components/ActiveFilterChips.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/types.js.map +1 -1
- 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
|
|