@oneuptime/common 10.2.1 → 10.2.3
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 +6 -0
- package/Models/DatabaseModels/ProjectOidc.ts +705 -0
- package/Models/DatabaseModels/UserNotificationRule.ts +49 -0
- package/Models/DatabaseModels/UserNotificationSetting.ts +17 -0
- package/Models/DatabaseModels/UserOnCallLogTimeline.ts +48 -0
- package/Models/DatabaseModels/UserWebhook.ts +290 -0
- package/Models/DatabaseModels/WebhookLog.ts +992 -0
- package/Server/API/ProjectOIDC.ts +73 -0
- package/Server/API/UserWebhookAPI.ts +159 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1778506655291-AddProjectOIDC.ts +79 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1778514515756-MigrationName.ts +259 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/Index.ts +4 -0
- package/Server/Services/Index.ts +2 -0
- package/Server/Services/OnCallDutyPolicyScheduleService.ts +139 -26
- package/Server/Services/ProjectOidcService.ts +10 -0
- package/Server/Services/UserNotificationRuleService.ts +213 -1
- package/Server/Services/UserNotificationSettingService.ts +95 -0
- package/Server/Services/UserWebhookService.ts +208 -0
- package/Server/Services/WebhookLogService.ts +15 -0
- package/Server/Services/WebhookService.ts +126 -0
- package/Types/OnCallDutyPolicy/UserOverrideUtil.ts +155 -0
- package/Types/Permission.ts +54 -0
- package/Types/Webhook/WebhookMessage.ts +8 -0
- package/Types/WebhookStatus.ts +6 -0
- package/UI/Components/Calendar/Calendar.css +257 -0
- package/UI/Components/Calendar/Calendar.tsx +22 -11
- package/build/dist/Models/DatabaseModels/Index.js +6 -0
- package/build/dist/Models/DatabaseModels/Index.js.map +1 -1
- package/build/dist/Models/DatabaseModels/ProjectOidc.js +727 -0
- package/build/dist/Models/DatabaseModels/ProjectOidc.js.map +1 -0
- package/build/dist/Models/DatabaseModels/UserNotificationRule.js +49 -0
- package/build/dist/Models/DatabaseModels/UserNotificationRule.js.map +1 -1
- package/build/dist/Models/DatabaseModels/UserNotificationSetting.js +19 -0
- package/build/dist/Models/DatabaseModels/UserNotificationSetting.js.map +1 -1
- package/build/dist/Models/DatabaseModels/UserOnCallLogTimeline.js +48 -0
- package/build/dist/Models/DatabaseModels/UserOnCallLogTimeline.js.map +1 -1
- package/build/dist/Models/DatabaseModels/UserWebhook.js +307 -0
- package/build/dist/Models/DatabaseModels/UserWebhook.js.map +1 -0
- package/build/dist/Models/DatabaseModels/WebhookLog.js +1021 -0
- package/build/dist/Models/DatabaseModels/WebhookLog.js.map +1 -0
- package/build/dist/Server/API/ProjectOIDC.js +45 -0
- package/build/dist/Server/API/ProjectOIDC.js.map +1 -0
- package/build/dist/Server/API/UserWebhookAPI.js +99 -0
- package/build/dist/Server/API/UserWebhookAPI.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1778506655291-AddProjectOIDC.js +34 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1778506655291-AddProjectOIDC.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1778514515756-MigrationName.js +94 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1778514515756-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/Services/Index.js +2 -0
- package/build/dist/Server/Services/Index.js.map +1 -1
- package/build/dist/Server/Services/OnCallDutyPolicyScheduleService.js +106 -17
- package/build/dist/Server/Services/OnCallDutyPolicyScheduleService.js.map +1 -1
- package/build/dist/Server/Services/ProjectOidcService.js +9 -0
- package/build/dist/Server/Services/ProjectOidcService.js.map +1 -0
- package/build/dist/Server/Services/UserNotificationRuleService.js +178 -21
- package/build/dist/Server/Services/UserNotificationRuleService.js.map +1 -1
- package/build/dist/Server/Services/UserNotificationSettingService.js +84 -1
- package/build/dist/Server/Services/UserNotificationSettingService.js.map +1 -1
- package/build/dist/Server/Services/UserWebhookService.js +190 -0
- package/build/dist/Server/Services/UserWebhookService.js.map +1 -0
- package/build/dist/Server/Services/WebhookLogService.js +13 -0
- package/build/dist/Server/Services/WebhookLogService.js.map +1 -0
- package/build/dist/Server/Services/WebhookService.js +92 -0
- package/build/dist/Server/Services/WebhookService.js.map +1 -0
- package/build/dist/Types/OnCallDutyPolicy/UserOverrideUtil.js +86 -0
- package/build/dist/Types/OnCallDutyPolicy/UserOverrideUtil.js.map +1 -0
- package/build/dist/Types/Permission.js +50 -0
- package/build/dist/Types/Permission.js.map +1 -1
- package/build/dist/Types/Webhook/WebhookMessage.js +2 -0
- package/build/dist/Types/Webhook/WebhookMessage.js.map +1 -0
- package/build/dist/Types/WebhookStatus.js +7 -0
- package/build/dist/Types/WebhookStatus.js.map +1 -0
- package/build/dist/UI/Components/Calendar/Calendar.js +12 -10
- package/build/dist/UI/Components/Calendar/Calendar.js.map +1 -1
- package/package.json +1 -1
|
@@ -121,6 +121,7 @@ import ProjectUserProfile from "./ProjectUserProfile";
|
|
|
121
121
|
import ProjectSmtpConfig from "./ProjectSmtpConfig";
|
|
122
122
|
//SSO
|
|
123
123
|
import ProjectSSO from "./ProjectSso";
|
|
124
|
+
import ProjectOIDC from "./ProjectOidc";
|
|
124
125
|
import PromoCode from "./PromoCode";
|
|
125
126
|
import EnterpriseLicense from "./EnterpriseLicense";
|
|
126
127
|
import OpenSourceDeployment from "./OpenSourceDeployment";
|
|
@@ -147,6 +148,7 @@ import ShortLink from "./ShortLink";
|
|
|
147
148
|
import SmsLog from "./SmsLog";
|
|
148
149
|
import WhatsAppLog from "./WhatsAppLog";
|
|
149
150
|
import TelegramLog from "./TelegramLog";
|
|
151
|
+
import WebhookLog from "./WebhookLog";
|
|
150
152
|
import PushNotificationLog from "./PushNotificationLog";
|
|
151
153
|
import WorkspaceNotificationLog from "./WorkspaceNotificationLog";
|
|
152
154
|
// Status Page
|
|
@@ -184,6 +186,7 @@ import UserEmail from "./UserEmail";
|
|
|
184
186
|
import UserPush from "./UserPush";
|
|
185
187
|
import UserWhatsApp from "./UserWhatsApp";
|
|
186
188
|
import UserTelegram from "./UserTelegram";
|
|
189
|
+
import UserWebhook from "./UserWebhook";
|
|
187
190
|
// User Notification Rules
|
|
188
191
|
import UserNotificationRule from "./UserNotificationRule";
|
|
189
192
|
import UserNotificationSetting from "./UserNotificationSetting";
|
|
@@ -439,6 +442,7 @@ const AllModelTypes: Array<{
|
|
|
439
442
|
WorkflowLog,
|
|
440
443
|
|
|
441
444
|
ProjectSSO,
|
|
445
|
+
ProjectOIDC,
|
|
442
446
|
StatusPageSSO,
|
|
443
447
|
StatusPageSCIM,
|
|
444
448
|
|
|
@@ -456,6 +460,7 @@ const AllModelTypes: Array<{
|
|
|
456
460
|
SmsLog,
|
|
457
461
|
WhatsAppLog,
|
|
458
462
|
TelegramLog,
|
|
463
|
+
WebhookLog,
|
|
459
464
|
PushNotificationLog,
|
|
460
465
|
WorkspaceNotificationLog,
|
|
461
466
|
CallLog,
|
|
@@ -467,6 +472,7 @@ const AllModelTypes: Array<{
|
|
|
467
472
|
UserPush,
|
|
468
473
|
UserWhatsApp,
|
|
469
474
|
UserTelegram,
|
|
475
|
+
UserWebhook,
|
|
470
476
|
UserIncomingCallNumber,
|
|
471
477
|
|
|
472
478
|
UserNotificationRule,
|