@oneuptime/common 9.2.12 → 9.2.14
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/AlertInternalNote.ts +29 -0
- package/Models/DatabaseModels/IncidentInternalNote.ts +29 -0
- package/Models/DatabaseModels/IncidentPublicNote.ts +29 -0
- package/Models/DatabaseModels/Index.ts +3 -11
- package/Models/DatabaseModels/{CopilotPullRequest.ts → LlmProvider.ts} +243 -248
- package/Models/DatabaseModels/ScheduledMaintenanceInternalNote.ts +29 -0
- package/Models/DatabaseModels/ScheduledMaintenancePublicNote.ts +29 -0
- package/Server/API/LlmProviderAPI.ts +57 -0
- package/Server/API/MicrosoftTeamsAPI.ts +2 -146
- package/Server/API/SlackAPI.ts +105 -0
- package/Server/API/StatusPageAPI.ts +6 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1765477339178-MigrationName.ts +71 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1765540325149-MigrationName.ts +45 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1765540549739-MigrationName.ts +61 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1765544010078-MigrationName.ts +35 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/Index.ts +8 -0
- package/Server/Middleware/SlackAuthorization.ts +4 -1
- package/Server/Services/AlertInternalNoteService.ts +26 -0
- package/Server/Services/IncidentInternalNoteService.ts +26 -0
- package/Server/Services/IncidentPublicNoteService.ts +26 -0
- package/Server/Services/Index.ts +2 -11
- package/Server/Services/LlmProviderService.ts +100 -0
- package/Server/Services/ScheduledMaintenanceInternalNoteService.ts +26 -0
- package/Server/Services/ScheduledMaintenancePublicNoteService.ts +26 -0
- package/Server/Services/StatusPageService.ts +3 -0
- package/Server/Utils/Express.ts +1 -0
- package/Server/Utils/StartServer.ts +5 -0
- package/Server/Utils/StatusPageResource.ts +89 -0
- package/Server/Utils/Workspace/MicrosoftTeams/MicrosoftTeams.ts +96 -55
- package/Server/Utils/Workspace/Slack/Actions/ActionTypes.ts +16 -0
- package/Server/Utils/Workspace/Slack/Actions/Alert.ts +184 -1
- package/Server/Utils/Workspace/Slack/Actions/Incident.ts +224 -1
- package/Server/Utils/Workspace/Slack/Actions/ScheduledMaintenance.ts +232 -1
- package/Server/Utils/Workspace/Slack/Slack.ts +113 -0
- package/Server/Utils/Workspace/Slack/app-manifest.json +13 -2
- package/Tests/Server/Utils/StatusPageResource.test.ts +161 -0
- package/Types/Icon/IconProp.ts +1 -0
- package/Types/LLM/Index.ts +4 -0
- package/Types/LLM/LlmType.ts +7 -0
- package/Types/Permission.ts +38 -113
- package/UI/Components/Icon/Icon.tsx +8 -0
- package/UI/Components/Link/Link.tsx +5 -1
- package/build/dist/Models/DatabaseModels/AlertInternalNote.js +30 -0
- package/build/dist/Models/DatabaseModels/AlertInternalNote.js.map +1 -1
- package/build/dist/Models/DatabaseModels/IncidentInternalNote.js +30 -0
- package/build/dist/Models/DatabaseModels/IncidentInternalNote.js.map +1 -1
- package/build/dist/Models/DatabaseModels/IncidentPublicNote.js +30 -0
- package/build/dist/Models/DatabaseModels/IncidentPublicNote.js.map +1 -1
- package/build/dist/Models/DatabaseModels/Index.js +2 -10
- package/build/dist/Models/DatabaseModels/Index.js.map +1 -1
- package/build/dist/Models/DatabaseModels/{CopilotPullRequest.js → LlmProvider.js} +263 -255
- package/build/dist/Models/DatabaseModels/LlmProvider.js.map +1 -0
- package/build/dist/Models/DatabaseModels/ScheduledMaintenanceInternalNote.js +30 -0
- package/build/dist/Models/DatabaseModels/ScheduledMaintenanceInternalNote.js.map +1 -1
- package/build/dist/Models/DatabaseModels/ScheduledMaintenancePublicNote.js +30 -0
- package/build/dist/Models/DatabaseModels/ScheduledMaintenancePublicNote.js.map +1 -1
- package/build/dist/Server/API/LlmProviderAPI.js +36 -0
- package/build/dist/Server/API/LlmProviderAPI.js.map +1 -0
- package/build/dist/Server/API/MicrosoftTeamsAPI.js +2 -91
- package/build/dist/Server/API/MicrosoftTeamsAPI.js.map +1 -1
- package/build/dist/Server/API/SlackAPI.js +74 -0
- package/build/dist/Server/API/SlackAPI.js.map +1 -1
- package/build/dist/Server/API/StatusPageAPI.js +6 -0
- package/build/dist/Server/API/StatusPageAPI.js.map +1 -1
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1765477339178-MigrationName.js +30 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1765477339178-MigrationName.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1765540325149-MigrationName.js +22 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1765540325149-MigrationName.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1765540549739-MigrationName.js +39 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1765540549739-MigrationName.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1765544010078-MigrationName.js +18 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1765544010078-MigrationName.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js +8 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js.map +1 -1
- package/build/dist/Server/Middleware/SlackAuthorization.js +4 -1
- package/build/dist/Server/Middleware/SlackAuthorization.js.map +1 -1
- package/build/dist/Server/Services/AlertInternalNoteService.js +24 -0
- package/build/dist/Server/Services/AlertInternalNoteService.js.map +1 -1
- package/build/dist/Server/Services/IncidentInternalNoteService.js +24 -0
- package/build/dist/Server/Services/IncidentInternalNoteService.js.map +1 -1
- package/build/dist/Server/Services/IncidentPublicNoteService.js +24 -0
- package/build/dist/Server/Services/IncidentPublicNoteService.js.map +1 -1
- package/build/dist/Server/Services/Index.js +2 -10
- package/build/dist/Server/Services/Index.js.map +1 -1
- package/build/dist/Server/Services/LlmProviderService.js +85 -0
- package/build/dist/Server/Services/LlmProviderService.js.map +1 -0
- package/build/dist/Server/Services/ScheduledMaintenanceInternalNoteService.js +24 -0
- package/build/dist/Server/Services/ScheduledMaintenanceInternalNoteService.js.map +1 -1
- package/build/dist/Server/Services/ScheduledMaintenancePublicNoteService.js +24 -0
- package/build/dist/Server/Services/ScheduledMaintenancePublicNoteService.js.map +1 -1
- package/build/dist/Server/Services/StatusPageService.js +3 -0
- package/build/dist/Server/Services/StatusPageService.js.map +1 -1
- package/build/dist/Server/Utils/Express.js.map +1 -1
- package/build/dist/Server/Utils/StartServer.js +5 -0
- package/build/dist/Server/Utils/StartServer.js.map +1 -1
- package/build/dist/Server/Utils/StatusPageResource.js +68 -0
- package/build/dist/Server/Utils/StatusPageResource.js.map +1 -0
- package/build/dist/Server/Utils/Workspace/MicrosoftTeams/MicrosoftTeams.js +73 -42
- package/build/dist/Server/Utils/Workspace/MicrosoftTeams/MicrosoftTeams.js.map +1 -1
- package/build/dist/Server/Utils/Workspace/Slack/Actions/ActionTypes.js +13 -0
- package/build/dist/Server/Utils/Workspace/Slack/Actions/ActionTypes.js.map +1 -1
- package/build/dist/Server/Utils/Workspace/Slack/Actions/Alert.js +143 -1
- package/build/dist/Server/Utils/Workspace/Slack/Actions/Alert.js.map +1 -1
- package/build/dist/Server/Utils/Workspace/Slack/Actions/Incident.js +173 -1
- package/build/dist/Server/Utils/Workspace/Slack/Actions/Incident.js.map +1 -1
- package/build/dist/Server/Utils/Workspace/Slack/Actions/ScheduledMaintenance.js +173 -1
- package/build/dist/Server/Utils/Workspace/Slack/Actions/ScheduledMaintenance.js.map +1 -1
- package/build/dist/Server/Utils/Workspace/Slack/Slack.js +92 -0
- package/build/dist/Server/Utils/Workspace/Slack/Slack.js.map +1 -1
- package/build/dist/Server/Utils/Workspace/Slack/app-manifest.json +12 -2
- package/build/dist/Tests/Server/Utils/StatusPageResource.test.js +122 -0
- package/build/dist/Tests/Server/Utils/StatusPageResource.test.js.map +1 -0
- package/build/dist/Types/Icon/IconProp.js +1 -0
- package/build/dist/Types/Icon/IconProp.js.map +1 -1
- package/build/dist/Types/LLM/Index.js +4 -0
- package/build/dist/Types/LLM/Index.js.map +1 -0
- package/build/dist/Types/LLM/LlmType.js +8 -0
- package/build/dist/Types/LLM/LlmType.js.map +1 -0
- package/build/dist/Types/Permission.js +32 -97
- package/build/dist/Types/Permission.js.map +1 -1
- package/build/dist/UI/Components/Icon/Icon.js +3 -0
- package/build/dist/UI/Components/Icon/Icon.js.map +1 -1
- package/build/dist/UI/Components/Link/Link.js +4 -1
- package/build/dist/UI/Components/Link/Link.js.map +1 -1
- package/package.json +5 -1
- package/Models/DatabaseModels/CopilotAction.ts +0 -772
- package/Models/DatabaseModels/CopilotActionTypePriority.ts +0 -340
- package/Models/DatabaseModels/CopilotCodeRepository.ts +0 -637
- package/Models/DatabaseModels/ServiceCopilotCodeRepository.ts +0 -544
- package/Server/API/CopilotActionAPI.ts +0 -418
- package/Server/API/CopilotCodeRepositoryAPI.ts +0 -127
- package/Server/API/CopilotPullRequestAPI.ts +0 -243
- package/Server/Docs/CodeRepository.md +0 -43
- package/Server/Middleware/CodeRepositoryAuthorization.ts +0 -50
- package/Server/Services/CopilotActionService.ts +0 -10
- package/Server/Services/CopilotActionTypePriorityService.ts +0 -67
- package/Server/Services/CopilotCodeRepositoryService.ts +0 -62
- package/Server/Services/CopilotPullRequestService.ts +0 -10
- package/Server/Services/ServiceCopilotCodeRepositoryService.ts +0 -10
- package/Types/Copilot/CopilotActionProps/DirectoryActionProp.ts +0 -3
- package/Types/Copilot/CopilotActionProps/ExceptionActionProp.ts +0 -4
- package/Types/Copilot/CopilotActionProps/FileActionProp.ts +0 -7
- package/Types/Copilot/CopilotActionProps/FunctionActionProp.ts +0 -5
- package/Types/Copilot/CopilotActionProps/Index.ts +0 -96
- package/Types/Copilot/CopilotActionProps/SpanActionProp.ts +0 -4
- package/Types/Copilot/CopilotActionStatus.ts +0 -114
- package/Types/Copilot/CopilotActionType.ts +0 -212
- package/build/dist/Models/DatabaseModels/CopilotAction.js +0 -793
- package/build/dist/Models/DatabaseModels/CopilotAction.js.map +0 -1
- package/build/dist/Models/DatabaseModels/CopilotActionTypePriority.js +0 -358
- package/build/dist/Models/DatabaseModels/CopilotActionTypePriority.js.map +0 -1
- package/build/dist/Models/DatabaseModels/CopilotCodeRepository.js +0 -656
- package/build/dist/Models/DatabaseModels/CopilotCodeRepository.js.map +0 -1
- package/build/dist/Models/DatabaseModels/CopilotPullRequest.js.map +0 -1
- package/build/dist/Models/DatabaseModels/ServiceCopilotCodeRepository.js +0 -561
- package/build/dist/Models/DatabaseModels/ServiceCopilotCodeRepository.js.map +0 -1
- package/build/dist/Server/API/CopilotActionAPI.js +0 -295
- package/build/dist/Server/API/CopilotActionAPI.js.map +0 -1
- package/build/dist/Server/API/CopilotCodeRepositoryAPI.js +0 -91
- package/build/dist/Server/API/CopilotCodeRepositoryAPI.js.map +0 -1
- package/build/dist/Server/API/CopilotPullRequestAPI.js +0 -166
- package/build/dist/Server/API/CopilotPullRequestAPI.js.map +0 -1
- package/build/dist/Server/Middleware/CodeRepositoryAuthorization.js +0 -48
- package/build/dist/Server/Middleware/CodeRepositoryAuthorization.js.map +0 -1
- package/build/dist/Server/Services/CopilotActionService.js +0 -9
- package/build/dist/Server/Services/CopilotActionService.js.map +0 -1
- package/build/dist/Server/Services/CopilotActionTypePriorityService.js +0 -61
- package/build/dist/Server/Services/CopilotActionTypePriorityService.js.map +0 -1
- package/build/dist/Server/Services/CopilotCodeRepositoryService.js +0 -61
- package/build/dist/Server/Services/CopilotCodeRepositoryService.js.map +0 -1
- package/build/dist/Server/Services/CopilotPullRequestService.js +0 -9
- package/build/dist/Server/Services/CopilotPullRequestService.js.map +0 -1
- package/build/dist/Server/Services/ServiceCopilotCodeRepositoryService.js +0 -9
- package/build/dist/Server/Services/ServiceCopilotCodeRepositoryService.js.map +0 -1
- package/build/dist/Types/Copilot/CopilotActionProps/DirectoryActionProp.js +0 -2
- package/build/dist/Types/Copilot/CopilotActionProps/DirectoryActionProp.js.map +0 -1
- package/build/dist/Types/Copilot/CopilotActionProps/ExceptionActionProp.js +0 -2
- package/build/dist/Types/Copilot/CopilotActionProps/ExceptionActionProp.js.map +0 -1
- package/build/dist/Types/Copilot/CopilotActionProps/FileActionProp.js +0 -2
- package/build/dist/Types/Copilot/CopilotActionProps/FileActionProp.js.map +0 -1
- package/build/dist/Types/Copilot/CopilotActionProps/FunctionActionProp.js +0 -2
- package/build/dist/Types/Copilot/CopilotActionProps/FunctionActionProp.js.map +0 -1
- package/build/dist/Types/Copilot/CopilotActionProps/Index.js +0 -64
- package/build/dist/Types/Copilot/CopilotActionProps/Index.js.map +0 -1
- package/build/dist/Types/Copilot/CopilotActionProps/SpanActionProp.js +0 -2
- package/build/dist/Types/Copilot/CopilotActionProps/SpanActionProp.js.map +0 -1
- package/build/dist/Types/Copilot/CopilotActionStatus.js +0 -96
- package/build/dist/Types/Copilot/CopilotActionStatus.js.map +0 -1
- package/build/dist/Types/Copilot/CopilotActionType.js +0 -175
- package/build/dist/Types/Copilot/CopilotActionType.js.map +0 -1
|
@@ -424,4 +424,33 @@ export default class AlertInternalNote extends BaseModel {
|
|
|
424
424
|
default: false,
|
|
425
425
|
})
|
|
426
426
|
public isOwnerNotified?: boolean = undefined;
|
|
427
|
+
|
|
428
|
+
@ColumnAccessControl({
|
|
429
|
+
create: [
|
|
430
|
+
Permission.ProjectOwner,
|
|
431
|
+
Permission.ProjectAdmin,
|
|
432
|
+
Permission.ProjectMember,
|
|
433
|
+
Permission.CreateAlertInternalNote,
|
|
434
|
+
],
|
|
435
|
+
read: [
|
|
436
|
+
Permission.ProjectOwner,
|
|
437
|
+
Permission.ProjectAdmin,
|
|
438
|
+
Permission.ProjectMember,
|
|
439
|
+
Permission.ReadAlertInternalNote,
|
|
440
|
+
],
|
|
441
|
+
update: [],
|
|
442
|
+
})
|
|
443
|
+
@Index()
|
|
444
|
+
@TableColumn({
|
|
445
|
+
type: TableColumnType.LongText,
|
|
446
|
+
title: "Posted from Slack Message ID",
|
|
447
|
+
description:
|
|
448
|
+
"Unique identifier for the Slack message this note was created from (channel_id:message_ts). Used to prevent duplicate notes when multiple users react to the same message.",
|
|
449
|
+
required: false,
|
|
450
|
+
})
|
|
451
|
+
@Column({
|
|
452
|
+
type: ColumnType.LongText,
|
|
453
|
+
nullable: true,
|
|
454
|
+
})
|
|
455
|
+
public postedFromSlackMessageId?: string = undefined;
|
|
427
456
|
}
|
|
@@ -424,4 +424,33 @@ export default class IncidentInternalNote extends BaseModel {
|
|
|
424
424
|
default: false,
|
|
425
425
|
})
|
|
426
426
|
public isOwnerNotified?: boolean = undefined;
|
|
427
|
+
|
|
428
|
+
@ColumnAccessControl({
|
|
429
|
+
create: [
|
|
430
|
+
Permission.ProjectOwner,
|
|
431
|
+
Permission.ProjectAdmin,
|
|
432
|
+
Permission.ProjectMember,
|
|
433
|
+
Permission.CreateIncidentInternalNote,
|
|
434
|
+
],
|
|
435
|
+
read: [
|
|
436
|
+
Permission.ProjectOwner,
|
|
437
|
+
Permission.ProjectAdmin,
|
|
438
|
+
Permission.ProjectMember,
|
|
439
|
+
Permission.ReadIncidentInternalNote,
|
|
440
|
+
],
|
|
441
|
+
update: [],
|
|
442
|
+
})
|
|
443
|
+
@Index()
|
|
444
|
+
@TableColumn({
|
|
445
|
+
type: TableColumnType.LongText,
|
|
446
|
+
title: "Posted from Slack Message ID",
|
|
447
|
+
description:
|
|
448
|
+
"Unique identifier for the Slack message this note was created from (channel_id:message_ts). Used to prevent duplicate notes when multiple users react to the same message.",
|
|
449
|
+
required: false,
|
|
450
|
+
})
|
|
451
|
+
@Column({
|
|
452
|
+
type: ColumnType.LongText,
|
|
453
|
+
nullable: true,
|
|
454
|
+
})
|
|
455
|
+
public postedFromSlackMessageId?: string = undefined;
|
|
427
456
|
}
|
|
@@ -555,4 +555,33 @@ export default class IncidentPublicNote extends BaseModel {
|
|
|
555
555
|
unique: false,
|
|
556
556
|
})
|
|
557
557
|
public postedAt?: Date = undefined;
|
|
558
|
+
|
|
559
|
+
@ColumnAccessControl({
|
|
560
|
+
create: [
|
|
561
|
+
Permission.ProjectOwner,
|
|
562
|
+
Permission.ProjectAdmin,
|
|
563
|
+
Permission.ProjectMember,
|
|
564
|
+
Permission.CreateIncidentPublicNote,
|
|
565
|
+
],
|
|
566
|
+
read: [
|
|
567
|
+
Permission.ProjectOwner,
|
|
568
|
+
Permission.ProjectAdmin,
|
|
569
|
+
Permission.ProjectMember,
|
|
570
|
+
Permission.ReadIncidentPublicNote,
|
|
571
|
+
],
|
|
572
|
+
update: [],
|
|
573
|
+
})
|
|
574
|
+
@Index()
|
|
575
|
+
@TableColumn({
|
|
576
|
+
type: TableColumnType.LongText,
|
|
577
|
+
title: "Posted from Slack Message ID",
|
|
578
|
+
description:
|
|
579
|
+
"Unique identifier for the Slack message this note was created from (channel_id:message_ts). Used to prevent duplicate notes when multiple users react to the same message.",
|
|
580
|
+
required: false,
|
|
581
|
+
})
|
|
582
|
+
@Column({
|
|
583
|
+
type: ColumnType.LongText,
|
|
584
|
+
nullable: true,
|
|
585
|
+
})
|
|
586
|
+
public postedFromSlackMessageId?: string = undefined;
|
|
558
587
|
}
|
|
@@ -6,8 +6,6 @@ import ApiKeyPermission from "./ApiKeyPermission";
|
|
|
6
6
|
import BillingInvoice from "./BillingInvoice";
|
|
7
7
|
import BillingPaymentMethods from "./BillingPaymentMethod";
|
|
8
8
|
import CallLog from "./CallLog";
|
|
9
|
-
import CopilotCodeRepository from "./CopilotCodeRepository";
|
|
10
|
-
import CopilotAction from "./CopilotAction";
|
|
11
9
|
// Date migration
|
|
12
10
|
import DataMigration from "./DataMigration";
|
|
13
11
|
import Domain from "./Domain";
|
|
@@ -74,6 +72,7 @@ import OnCallDutyPolicyTimeLog from "./OnCallDutyPolicyTimeLog";
|
|
|
74
72
|
import Probe from "./Probe";
|
|
75
73
|
import ProbeOwnerTeam from "./ProbeOwnerTeam";
|
|
76
74
|
import ProbeOwnerUser from "./ProbeOwnerUser";
|
|
75
|
+
import LlmProvider from "./LlmProvider";
|
|
77
76
|
import Project from "./Project";
|
|
78
77
|
import ProjectCallSMSConfig from "./ProjectCallSMSConfig";
|
|
79
78
|
// Project SMTP Config.
|
|
@@ -97,7 +96,6 @@ import ScheduledMaintenanceStateTimeline from "./ScheduledMaintenanceStateTimeli
|
|
|
97
96
|
import ServiceCatalog from "./ServiceCatalog";
|
|
98
97
|
import ServiceCatalogOwnerTeam from "./ServiceCatalogOwnerTeam";
|
|
99
98
|
import ServiceCatalogOwnerUser from "./ServiceCatalogOwnerUser";
|
|
100
|
-
import ServiceCopilotCodeRepository from "./ServiceCopilotCodeRepository";
|
|
101
99
|
// Short link.
|
|
102
100
|
import ShortLink from "./ShortLink";
|
|
103
101
|
// SMS
|
|
@@ -149,7 +147,6 @@ import UserSms from "./UserSMS";
|
|
|
149
147
|
import Workflow from "./Workflow";
|
|
150
148
|
import WorkflowLog from "./WorkflowLog";
|
|
151
149
|
import WorkflowVariables from "./WorkflowVariable";
|
|
152
|
-
import CopilotPullRequest from "./CopilotPullRequest";
|
|
153
150
|
import ServiceCatalogDependency from "./ServiceCatalogDependency";
|
|
154
151
|
import ServiceCatalogMonitor from "./ServiceCatalogMonitor";
|
|
155
152
|
import ServiceCatalogTelemetryService from "./ServiceCatalogTelemetryService";
|
|
@@ -160,7 +157,6 @@ import UserWebAuthn from "./UserWebAuthn";
|
|
|
160
157
|
import TelemetryIngestionKey from "./TelemetryIngestionKey";
|
|
161
158
|
|
|
162
159
|
import TelemetryException from "./TelemetryException";
|
|
163
|
-
import CopilotActionTypePriority from "./CopilotActionTypePriority";
|
|
164
160
|
import ScheduledMaintenanceTemplate from "./ScheduledMaintenanceTemplate";
|
|
165
161
|
import ScheduledMaintenanceTemplateOwnerTeam from "./ScheduledMaintenanceTemplateOwnerTeam";
|
|
166
162
|
import ScheduledMaintenanceTemplateOwnerUser from "./ScheduledMaintenanceTemplateOwnerUser";
|
|
@@ -373,15 +369,11 @@ const AllModelTypes: Array<{
|
|
|
373
369
|
ServiceCatalogMonitor,
|
|
374
370
|
ServiceCatalogTelemetryService,
|
|
375
371
|
|
|
376
|
-
CopilotCodeRepository,
|
|
377
|
-
CopilotAction,
|
|
378
|
-
ServiceCopilotCodeRepository,
|
|
379
|
-
CopilotPullRequest,
|
|
380
|
-
CopilotActionTypePriority,
|
|
381
|
-
|
|
382
372
|
ProbeOwnerTeam,
|
|
383
373
|
ProbeOwnerUser,
|
|
384
374
|
|
|
375
|
+
LlmProvider,
|
|
376
|
+
|
|
385
377
|
UserSession,
|
|
386
378
|
UserTotpAuth,
|
|
387
379
|
UserWebAuthn,
|