@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.
- package/Models/DatabaseModels/Index.ts +2 -0
- package/Models/DatabaseModels/WorkspaceNotificationSummary.ts +819 -0
- package/Server/API/StatusPageAPI.ts +7 -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/WorkspaceNotificationSummaryService.ts +1450 -0
- package/Server/Utils/Greenlock/Greenlock.ts +1 -0
- 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/GanttChart/Bar/Index.tsx +23 -5
- 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/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/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/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/GanttChart/Bar/Index.js +15 -3
- package/build/dist/UI/Components/GanttChart/Bar/Index.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
|
|