@oneuptime/common 9.2.27 → 9.3.0
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/AIAgent.ts +589 -0
- package/Models/DatabaseModels/AIAgentOwnerTeam.ts +434 -0
- package/Models/DatabaseModels/AIAgentOwnerUser.ts +433 -0
- package/Models/DatabaseModels/AIAgentTask.ts +549 -0
- package/Models/DatabaseModels/AIAgentTaskLog.ts +417 -0
- package/Models/DatabaseModels/AIAgentTaskPullRequest.ts +731 -0
- package/Models/DatabaseModels/AIAgentTaskTelemetryException.ts +388 -0
- package/Models/DatabaseModels/Index.ts +15 -0
- package/Models/DatabaseModels/Monitor.ts +33 -0
- package/Models/DatabaseModels/Project.ts +25 -0
- package/Models/DatabaseModels/TelemetryException.ts +1 -1
- package/Server/API/AIAgentAPI.ts +200 -0
- package/Server/API/AIAgentDataAPI.ts +692 -0
- package/Server/API/AIAgentTaskAPI.ts +286 -0
- package/Server/API/AIAgentTaskLogAPI.ts +165 -0
- package/Server/API/AIAgentTaskPullRequestAPI.ts +14 -0
- package/Server/API/GitHubAPI.ts +25 -7
- package/Server/API/TelemetryExceptionAPI.ts +169 -0
- package/Server/EnvironmentConfig.ts +3 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1766590916627-MigrationName.ts +195 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1766600860972-MigrationName.ts +31 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1766606720183-MigrationName.ts +17 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1766688107858-MigrationName.ts +63 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1766754182870-MigrationName.ts +75 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1766774689743-MigrationName.ts +157 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1766777986427-MigrationName.ts +33 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1766918848434-AddAIAgentIsDefault.ts +27 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1766923324521-MigrationName.ts +37 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1766958924188-AddGitHubAppInstallationIdToProject.ts +31 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1767009661768-MigrationName.ts +35 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/Index.ts +22 -0
- package/Server/Services/AIAgentOwnerTeamService.ts +10 -0
- package/Server/Services/AIAgentOwnerUserService.ts +10 -0
- package/Server/Services/AIAgentService.ts +564 -0
- package/Server/Services/AIAgentTaskLogService.ts +10 -0
- package/Server/Services/AIAgentTaskPullRequestService.ts +10 -0
- package/Server/Services/AIAgentTaskService.ts +178 -0
- package/Server/Services/AIAgentTaskTelemetryExceptionService.ts +39 -0
- package/Server/Services/Index.ts +10 -0
- package/Server/Services/TelemetryExceptionService.ts +162 -0
- package/Server/Utils/Monitor/MonitorResource.ts +228 -0
- package/Server/Utils/PushNotificationUtil.ts +29 -0
- package/Server/Utils/WhatsAppTemplateUtil.ts +6 -0
- package/Tests/UI/Components/Badge.test.tsx +5 -5
- package/Tests/UI/Components/Card.test.tsx +4 -8
- package/Tests/UI/Components/HiddenText.test.tsx +2 -5
- package/Tests/UI/Components/SideMenuItem.test.tsx +4 -2
- package/Types/AI/AIAgentTaskMetadata.ts +25 -0
- package/Types/AI/AIAgentTaskStatus.ts +65 -0
- package/Types/AI/AIAgentTaskType.ts +40 -0
- package/Types/Email/EmailTemplateType.ts +2 -0
- package/Types/Monitor/MonitorEvaluationSummary.ts +2 -1
- package/Types/NotificationSetting/NotificationSettingEventType.ts +4 -0
- package/Types/Permission.ts +176 -0
- package/Types/WhatsApp/WhatsAppTemplates.ts +9 -0
- package/UI/Components/AIAgent/AIAgent.tsx +69 -0
- package/UI/Components/Badge/Badge.tsx +9 -5
- package/UI/Components/Banner/Banner.tsx +1 -1
- package/UI/Components/Card/Card.tsx +14 -12
- package/UI/Components/CodeBlock/CodeBlock.tsx +47 -4
- package/UI/Components/Detail/Detail.tsx +239 -49
- package/UI/Components/Detail/FieldLabel.tsx +35 -11
- package/UI/Components/Detail/PlaceholderText.tsx +18 -1
- package/UI/Components/Footer/Footer.tsx +9 -7
- package/UI/Components/Header/Header.tsx +4 -3
- package/UI/Components/Header/HeaderIconDropdownButton.tsx +13 -11
- package/UI/Components/Header/IconDropdown/IconDropdownItem.tsx +3 -3
- package/UI/Components/Header/IconDropdown/IconDropdownMenu.tsx +1 -1
- package/UI/Components/Header/ProjectPicker/CreateNewProjectButton.tsx +4 -4
- package/UI/Components/Header/ProjectPicker/ProjectPicker.tsx +6 -6
- package/UI/Components/Header/ProjectPicker/ProjectPickerFilterBox.tsx +3 -3
- package/UI/Components/Header/ProjectPicker/ProjectPickerMenu.tsx +1 -1
- package/UI/Components/Header/ProjectPicker/ProjectPickerMenuItem.tsx +4 -4
- package/UI/Components/HeaderAlert/HeaderAlert.tsx +32 -32
- package/UI/Components/HeaderAlert/HeaderAlertGroup.tsx +1 -7
- package/UI/Components/HiddenText/HiddenText.tsx +98 -27
- package/UI/Components/Icon/Icon.tsx +12 -9
- package/UI/Components/InfoCard/InfoCard.tsx +7 -3
- package/UI/Components/ModelTable/BaseModelTable.tsx +1 -1
- package/UI/Components/ObjectID/ObjectIDView.tsx +73 -0
- package/UI/Components/Page/Page.tsx +3 -5
- package/UI/Components/SideMenu/SideMenu.tsx +175 -40
- package/UI/Components/SideMenu/SideMenuDivider.tsx +17 -0
- package/UI/Components/SideMenu/SideMenuItem.tsx +111 -158
- package/UI/Components/SideMenu/SideMenuSection.tsx +53 -3
- package/UI/Components/Table/Table.tsx +1 -1
- package/UI/Components/Types/FieldType.ts +2 -0
- package/UI/Config.ts +5 -0
- package/build/dist/Models/DatabaseModels/AIAgent.js +614 -0
- package/build/dist/Models/DatabaseModels/AIAgent.js.map +1 -0
- package/build/dist/Models/DatabaseModels/AIAgentOwnerTeam.js +452 -0
- package/build/dist/Models/DatabaseModels/AIAgentOwnerTeam.js.map +1 -0
- package/build/dist/Models/DatabaseModels/AIAgentOwnerUser.js +451 -0
- package/build/dist/Models/DatabaseModels/AIAgentOwnerUser.js.map +1 -0
- package/build/dist/Models/DatabaseModels/AIAgentTask.js +580 -0
- package/build/dist/Models/DatabaseModels/AIAgentTask.js.map +1 -0
- package/build/dist/Models/DatabaseModels/AIAgentTaskLog.js +438 -0
- package/build/dist/Models/DatabaseModels/AIAgentTaskLog.js.map +1 -0
- package/build/dist/Models/DatabaseModels/AIAgentTaskPullRequest.js +771 -0
- package/build/dist/Models/DatabaseModels/AIAgentTaskPullRequest.js.map +1 -0
- package/build/dist/Models/DatabaseModels/AIAgentTaskTelemetryException.js +404 -0
- package/build/dist/Models/DatabaseModels/AIAgentTaskTelemetryException.js.map +1 -0
- package/build/dist/Models/DatabaseModels/Index.js +14 -0
- package/build/dist/Models/DatabaseModels/Index.js.map +1 -1
- package/build/dist/Models/DatabaseModels/Monitor.js +34 -0
- package/build/dist/Models/DatabaseModels/Monitor.js.map +1 -1
- package/build/dist/Models/DatabaseModels/Project.js +26 -0
- package/build/dist/Models/DatabaseModels/Project.js.map +1 -1
- package/build/dist/Models/DatabaseModels/TelemetryException.js +1 -1
- package/build/dist/Models/DatabaseModels/TelemetryException.js.map +1 -1
- package/build/dist/Server/API/AIAgentAPI.js +141 -0
- package/build/dist/Server/API/AIAgentAPI.js.map +1 -0
- package/build/dist/Server/API/AIAgentDataAPI.js +415 -0
- package/build/dist/Server/API/AIAgentDataAPI.js.map +1 -0
- package/build/dist/Server/API/AIAgentTaskAPI.js +199 -0
- package/build/dist/Server/API/AIAgentTaskAPI.js.map +1 -0
- package/build/dist/Server/API/AIAgentTaskLogAPI.js +106 -0
- package/build/dist/Server/API/AIAgentTaskLogAPI.js.map +1 -0
- package/build/dist/Server/API/AIAgentTaskPullRequestAPI.js +9 -0
- package/build/dist/Server/API/AIAgentTaskPullRequestAPI.js.map +1 -0
- package/build/dist/Server/API/GitHubAPI.js +23 -8
- package/build/dist/Server/API/GitHubAPI.js.map +1 -1
- package/build/dist/Server/API/TelemetryExceptionAPI.js +120 -0
- package/build/dist/Server/API/TelemetryExceptionAPI.js.map +1 -0
- package/build/dist/Server/EnvironmentConfig.js +2 -0
- package/build/dist/Server/EnvironmentConfig.js.map +1 -1
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1766590916627-MigrationName.js +74 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1766590916627-MigrationName.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1766600860972-MigrationName.js +18 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1766600860972-MigrationName.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1766606720183-MigrationName.js +12 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1766606720183-MigrationName.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1766688107858-MigrationName.js +28 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1766688107858-MigrationName.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1766754182870-MigrationName.js +32 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1766754182870-MigrationName.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1766774689743-MigrationName.js +60 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1766774689743-MigrationName.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1766777986427-MigrationName.js +18 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1766777986427-MigrationName.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1766918848434-AddAIAgentIsDefault.js +16 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1766918848434-AddAIAgentIsDefault.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1766923324521-MigrationName.js +20 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1766923324521-MigrationName.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1766958924188-AddGitHubAppInstallationIdToProject.js +16 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1766958924188-AddGitHubAppInstallationIdToProject.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1767009661768-MigrationName.js +18 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1767009661768-MigrationName.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js +22 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js.map +1 -1
- package/build/dist/Server/Services/AIAgentOwnerTeamService.js +9 -0
- package/build/dist/Server/Services/AIAgentOwnerTeamService.js.map +1 -0
- package/build/dist/Server/Services/AIAgentOwnerUserService.js +9 -0
- package/build/dist/Server/Services/AIAgentOwnerUserService.js.map +1 -0
- package/build/dist/Server/Services/AIAgentService.js +471 -0
- package/build/dist/Server/Services/AIAgentService.js.map +1 -0
- package/build/dist/Server/Services/AIAgentTaskLogService.js +9 -0
- package/build/dist/Server/Services/AIAgentTaskLogService.js.map +1 -0
- package/build/dist/Server/Services/AIAgentTaskPullRequestService.js +9 -0
- package/build/dist/Server/Services/AIAgentTaskPullRequestService.js.map +1 -0
- package/build/dist/Server/Services/AIAgentTaskService.js +158 -0
- package/build/dist/Server/Services/AIAgentTaskService.js.map +1 -0
- package/build/dist/Server/Services/AIAgentTaskTelemetryExceptionService.js +36 -0
- package/build/dist/Server/Services/AIAgentTaskTelemetryExceptionService.js.map +1 -0
- package/build/dist/Server/Services/Index.js +10 -0
- package/build/dist/Server/Services/Index.js.map +1 -1
- package/build/dist/Server/Services/TelemetryExceptionService.js +137 -0
- package/build/dist/Server/Services/TelemetryExceptionService.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorResource.js +168 -0
- package/build/dist/Server/Utils/Monitor/MonitorResource.js.map +1 -1
- package/build/dist/Server/Utils/PushNotificationUtil.js +21 -0
- package/build/dist/Server/Utils/PushNotificationUtil.js.map +1 -1
- package/build/dist/Server/Utils/WhatsAppTemplateUtil.js +4 -0
- package/build/dist/Server/Utils/WhatsAppTemplateUtil.js.map +1 -1
- package/build/dist/Tests/UI/Components/Badge.test.js +5 -5
- package/build/dist/Tests/UI/Components/Badge.test.js.map +1 -1
- package/build/dist/Tests/UI/Components/Card.test.js +4 -8
- package/build/dist/Tests/UI/Components/Card.test.js.map +1 -1
- package/build/dist/Tests/UI/Components/HiddenText.test.js +2 -3
- package/build/dist/Tests/UI/Components/HiddenText.test.js.map +1 -1
- package/build/dist/Tests/UI/Components/SideMenuItem.test.js +3 -2
- package/build/dist/Tests/UI/Components/SideMenuItem.test.js.map +1 -1
- package/build/dist/Types/AI/AIAgentTaskMetadata.js +6 -0
- package/build/dist/Types/AI/AIAgentTaskMetadata.js.map +1 -0
- package/build/dist/Types/AI/AIAgentTaskStatus.js +51 -0
- package/build/dist/Types/AI/AIAgentTaskStatus.js.map +1 -0
- package/build/dist/Types/AI/AIAgentTaskType.js +29 -0
- package/build/dist/Types/AI/AIAgentTaskType.js.map +1 -0
- package/build/dist/Types/Email/EmailTemplateType.js +2 -0
- package/build/dist/Types/Email/EmailTemplateType.js.map +1 -1
- package/build/dist/Types/NotificationSetting/NotificationSettingEventType.js +3 -0
- package/build/dist/Types/NotificationSetting/NotificationSettingEventType.js.map +1 -1
- package/build/dist/Types/Permission.js +160 -0
- package/build/dist/Types/Permission.js.map +1 -1
- package/build/dist/Types/WhatsApp/WhatsAppTemplates.js +6 -0
- package/build/dist/Types/WhatsApp/WhatsAppTemplates.js.map +1 -1
- package/build/dist/UI/Components/AIAgent/AIAgent.js +32 -0
- package/build/dist/UI/Components/AIAgent/AIAgent.js.map +1 -0
- package/build/dist/UI/Components/Badge/Badge.js +9 -5
- package/build/dist/UI/Components/Badge/Badge.js.map +1 -1
- package/build/dist/UI/Components/Banner/Banner.js +1 -1
- package/build/dist/UI/Components/Banner/Banner.js.map +1 -1
- package/build/dist/UI/Components/Card/Card.js +12 -12
- package/build/dist/UI/Components/Card/Card.js.map +1 -1
- package/build/dist/UI/Components/CodeBlock/CodeBlock.js +22 -2
- package/build/dist/UI/Components/CodeBlock/CodeBlock.js.map +1 -1
- package/build/dist/UI/Components/Detail/Detail.js +117 -37
- package/build/dist/UI/Components/Detail/Detail.js.map +1 -1
- package/build/dist/UI/Components/Detail/FieldLabel.js +12 -7
- package/build/dist/UI/Components/Detail/FieldLabel.js.map +1 -1
- package/build/dist/UI/Components/Detail/PlaceholderText.js +4 -1
- package/build/dist/UI/Components/Detail/PlaceholderText.js.map +1 -1
- package/build/dist/UI/Components/Footer/Footer.js +6 -6
- package/build/dist/UI/Components/Footer/Footer.js.map +1 -1
- package/build/dist/UI/Components/Header/Header.js +4 -3
- package/build/dist/UI/Components/Header/Header.js.map +1 -1
- package/build/dist/UI/Components/Header/HeaderIconDropdownButton.js +7 -7
- package/build/dist/UI/Components/Header/HeaderIconDropdownButton.js.map +1 -1
- package/build/dist/UI/Components/Header/IconDropdown/IconDropdownItem.js +3 -3
- package/build/dist/UI/Components/Header/IconDropdown/IconDropdownItem.js.map +1 -1
- package/build/dist/UI/Components/Header/IconDropdown/IconDropdownMenu.js +1 -1
- package/build/dist/UI/Components/Header/IconDropdown/IconDropdownMenu.js.map +1 -1
- package/build/dist/UI/Components/Header/ProjectPicker/CreateNewProjectButton.js +4 -4
- package/build/dist/UI/Components/Header/ProjectPicker/CreateNewProjectButton.js.map +1 -1
- package/build/dist/UI/Components/Header/ProjectPicker/ProjectPicker.js +6 -6
- package/build/dist/UI/Components/Header/ProjectPicker/ProjectPicker.js.map +1 -1
- package/build/dist/UI/Components/Header/ProjectPicker/ProjectPickerFilterBox.js +2 -2
- package/build/dist/UI/Components/Header/ProjectPicker/ProjectPickerFilterBox.js.map +1 -1
- package/build/dist/UI/Components/Header/ProjectPicker/ProjectPickerMenu.js +1 -1
- package/build/dist/UI/Components/Header/ProjectPicker/ProjectPickerMenu.js.map +1 -1
- package/build/dist/UI/Components/Header/ProjectPicker/ProjectPickerMenuItem.js +4 -4
- package/build/dist/UI/Components/Header/ProjectPicker/ProjectPickerMenuItem.js.map +1 -1
- package/build/dist/UI/Components/HeaderAlert/HeaderAlert.js +31 -29
- package/build/dist/UI/Components/HeaderAlert/HeaderAlert.js.map +1 -1
- package/build/dist/UI/Components/HeaderAlert/HeaderAlertGroup.js +1 -3
- package/build/dist/UI/Components/HeaderAlert/HeaderAlertGroup.js.map +1 -1
- package/build/dist/UI/Components/HiddenText/HiddenText.js +33 -14
- package/build/dist/UI/Components/HiddenText/HiddenText.js.map +1 -1
- package/build/dist/UI/Components/Icon/Icon.js +3 -4
- package/build/dist/UI/Components/Icon/Icon.js.map +1 -1
- package/build/dist/UI/Components/InfoCard/InfoCard.js +3 -3
- package/build/dist/UI/Components/InfoCard/InfoCard.js.map +1 -1
- package/build/dist/UI/Components/ModelTable/BaseModelTable.js +1 -1
- package/build/dist/UI/Components/ModelTable/BaseModelTable.js.map +1 -1
- package/build/dist/UI/Components/ObjectID/ObjectIDView.js +30 -0
- package/build/dist/UI/Components/ObjectID/ObjectIDView.js.map +1 -0
- package/build/dist/UI/Components/Page/Page.js +3 -3
- package/build/dist/UI/Components/Page/Page.js.map +1 -1
- package/build/dist/UI/Components/SideMenu/SideMenu.js +82 -17
- package/build/dist/UI/Components/SideMenu/SideMenu.js.map +1 -1
- package/build/dist/UI/Components/SideMenu/SideMenuDivider.js +7 -0
- package/build/dist/UI/Components/SideMenu/SideMenuDivider.js.map +1 -0
- package/build/dist/UI/Components/SideMenu/SideMenuItem.js +68 -97
- package/build/dist/UI/Components/SideMenu/SideMenuItem.js.map +1 -1
- package/build/dist/UI/Components/SideMenu/SideMenuSection.js +18 -3
- package/build/dist/UI/Components/SideMenu/SideMenuSection.js.map +1 -1
- package/build/dist/UI/Components/Table/Table.js +1 -1
- package/build/dist/UI/Components/Table/Table.js.map +1 -1
- package/build/dist/UI/Components/Types/FieldType.js +2 -0
- package/build/dist/UI/Components/Types/FieldType.js.map +1 -1
- package/build/dist/UI/Config.js +2 -0
- package/build/dist/UI/Config.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,452 @@
|
|
|
1
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
+
};
|
|
7
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
8
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
9
|
+
};
|
|
10
|
+
import AIAgent from "./AIAgent";
|
|
11
|
+
import Project from "./Project";
|
|
12
|
+
import Team from "./Team";
|
|
13
|
+
import User from "./User";
|
|
14
|
+
import BaseModel from "./DatabaseBaseModel/DatabaseBaseModel";
|
|
15
|
+
import Route from "../../Types/API/Route";
|
|
16
|
+
import { PlanType } from "../../Types/Billing/SubscriptionPlan";
|
|
17
|
+
import ColumnAccessControl from "../../Types/Database/AccessControl/ColumnAccessControl";
|
|
18
|
+
import TableAccessControl from "../../Types/Database/AccessControl/TableAccessControl";
|
|
19
|
+
import TableBillingAccessControl from "../../Types/Database/AccessControl/TableBillingAccessControl";
|
|
20
|
+
import ColumnType from "../../Types/Database/ColumnType";
|
|
21
|
+
import CrudApiEndpoint from "../../Types/Database/CrudApiEndpoint";
|
|
22
|
+
import EnableDocumentation from "../../Types/Database/EnableDocumentation";
|
|
23
|
+
import EnableWorkflow from "../../Types/Database/EnableWorkflow";
|
|
24
|
+
import TableColumn from "../../Types/Database/TableColumn";
|
|
25
|
+
import TableColumnType from "../../Types/Database/TableColumnType";
|
|
26
|
+
import TableMetadata from "../../Types/Database/TableMetadata";
|
|
27
|
+
import TenantColumn from "../../Types/Database/TenantColumn";
|
|
28
|
+
import IconProp from "../../Types/Icon/IconProp";
|
|
29
|
+
import ObjectID from "../../Types/ObjectID";
|
|
30
|
+
import Permission from "../../Types/Permission";
|
|
31
|
+
import { Column, Entity, Index, JoinColumn, ManyToOne } from "typeorm";
|
|
32
|
+
let AIAgentOwnerTeam = class AIAgentOwnerTeam extends BaseModel {
|
|
33
|
+
constructor() {
|
|
34
|
+
super(...arguments);
|
|
35
|
+
this.project = undefined;
|
|
36
|
+
this.projectId = undefined;
|
|
37
|
+
this.team = undefined;
|
|
38
|
+
this.teamId = undefined;
|
|
39
|
+
this.aiAgent = undefined;
|
|
40
|
+
this.aiAgentId = undefined;
|
|
41
|
+
this.createdByUser = undefined;
|
|
42
|
+
this.createdByUserId = undefined;
|
|
43
|
+
this.deletedByUser = undefined;
|
|
44
|
+
this.deletedByUserId = undefined;
|
|
45
|
+
this.isOwnerNotified = undefined;
|
|
46
|
+
}
|
|
47
|
+
};
|
|
48
|
+
__decorate([
|
|
49
|
+
ColumnAccessControl({
|
|
50
|
+
create: [
|
|
51
|
+
Permission.ProjectOwner,
|
|
52
|
+
Permission.ProjectAdmin,
|
|
53
|
+
Permission.ProjectMember,
|
|
54
|
+
Permission.CreateAIAgentOwnerTeam,
|
|
55
|
+
],
|
|
56
|
+
read: [
|
|
57
|
+
Permission.ProjectOwner,
|
|
58
|
+
Permission.ProjectAdmin,
|
|
59
|
+
Permission.ProjectMember,
|
|
60
|
+
Permission.ReadAIAgentOwnerTeam,
|
|
61
|
+
],
|
|
62
|
+
update: [],
|
|
63
|
+
}),
|
|
64
|
+
TableColumn({
|
|
65
|
+
manyToOneRelationColumn: "projectId",
|
|
66
|
+
type: TableColumnType.Entity,
|
|
67
|
+
modelType: Project,
|
|
68
|
+
title: "Project",
|
|
69
|
+
description: "Relation to Project Resource in which this object belongs",
|
|
70
|
+
example: "5f8b9c0d-e1a2-4b3c-8d5e-6f7a8b9c0d1e",
|
|
71
|
+
}),
|
|
72
|
+
ManyToOne(() => {
|
|
73
|
+
return Project;
|
|
74
|
+
}, {
|
|
75
|
+
eager: false,
|
|
76
|
+
nullable: false,
|
|
77
|
+
onDelete: "CASCADE",
|
|
78
|
+
orphanedRowAction: "nullify",
|
|
79
|
+
}),
|
|
80
|
+
JoinColumn({ name: "projectId" }),
|
|
81
|
+
__metadata("design:type", Project)
|
|
82
|
+
], AIAgentOwnerTeam.prototype, "project", void 0);
|
|
83
|
+
__decorate([
|
|
84
|
+
ColumnAccessControl({
|
|
85
|
+
create: [
|
|
86
|
+
Permission.ProjectOwner,
|
|
87
|
+
Permission.ProjectAdmin,
|
|
88
|
+
Permission.ProjectMember,
|
|
89
|
+
Permission.CreateAIAgentOwnerTeam,
|
|
90
|
+
],
|
|
91
|
+
read: [
|
|
92
|
+
Permission.ProjectOwner,
|
|
93
|
+
Permission.ProjectAdmin,
|
|
94
|
+
Permission.ProjectMember,
|
|
95
|
+
Permission.ReadAIAgentOwnerTeam,
|
|
96
|
+
],
|
|
97
|
+
update: [],
|
|
98
|
+
}),
|
|
99
|
+
Index(),
|
|
100
|
+
TableColumn({
|
|
101
|
+
type: TableColumnType.ObjectID,
|
|
102
|
+
required: true,
|
|
103
|
+
canReadOnRelationQuery: true,
|
|
104
|
+
title: "Project ID",
|
|
105
|
+
description: "ID of your OneUptime Project in which this object belongs",
|
|
106
|
+
example: "5f8b9c0d-e1a2-4b3c-8d5e-6f7a8b9c0d1e",
|
|
107
|
+
}),
|
|
108
|
+
Column({
|
|
109
|
+
type: ColumnType.ObjectID,
|
|
110
|
+
nullable: false,
|
|
111
|
+
transformer: ObjectID.getDatabaseTransformer(),
|
|
112
|
+
}),
|
|
113
|
+
__metadata("design:type", ObjectID)
|
|
114
|
+
], AIAgentOwnerTeam.prototype, "projectId", void 0);
|
|
115
|
+
__decorate([
|
|
116
|
+
ColumnAccessControl({
|
|
117
|
+
create: [
|
|
118
|
+
Permission.ProjectOwner,
|
|
119
|
+
Permission.ProjectAdmin,
|
|
120
|
+
Permission.ProjectMember,
|
|
121
|
+
Permission.CreateAIAgentOwnerTeam,
|
|
122
|
+
],
|
|
123
|
+
read: [
|
|
124
|
+
Permission.ProjectOwner,
|
|
125
|
+
Permission.ProjectAdmin,
|
|
126
|
+
Permission.ProjectMember,
|
|
127
|
+
Permission.ReadAIAgentOwnerTeam,
|
|
128
|
+
],
|
|
129
|
+
update: [],
|
|
130
|
+
}),
|
|
131
|
+
TableColumn({
|
|
132
|
+
manyToOneRelationColumn: "teamId",
|
|
133
|
+
type: TableColumnType.Entity,
|
|
134
|
+
modelType: Team,
|
|
135
|
+
title: "Team",
|
|
136
|
+
description: "Team that is the owner. All users in this team will receive notifications. ",
|
|
137
|
+
example: "a1b2c3d4-e5f6-7890-ab12-cd34ef567890",
|
|
138
|
+
}),
|
|
139
|
+
ManyToOne(() => {
|
|
140
|
+
return Team;
|
|
141
|
+
}, {
|
|
142
|
+
eager: false,
|
|
143
|
+
nullable: true,
|
|
144
|
+
onDelete: "CASCADE",
|
|
145
|
+
orphanedRowAction: "nullify",
|
|
146
|
+
}),
|
|
147
|
+
JoinColumn({ name: "teamId" }),
|
|
148
|
+
__metadata("design:type", Team)
|
|
149
|
+
], AIAgentOwnerTeam.prototype, "team", void 0);
|
|
150
|
+
__decorate([
|
|
151
|
+
ColumnAccessControl({
|
|
152
|
+
create: [
|
|
153
|
+
Permission.ProjectOwner,
|
|
154
|
+
Permission.ProjectAdmin,
|
|
155
|
+
Permission.ProjectMember,
|
|
156
|
+
Permission.CreateAIAgentOwnerTeam,
|
|
157
|
+
],
|
|
158
|
+
read: [
|
|
159
|
+
Permission.ProjectOwner,
|
|
160
|
+
Permission.ProjectAdmin,
|
|
161
|
+
Permission.ProjectMember,
|
|
162
|
+
Permission.ReadAIAgentOwnerTeam,
|
|
163
|
+
],
|
|
164
|
+
update: [],
|
|
165
|
+
}),
|
|
166
|
+
Index(),
|
|
167
|
+
TableColumn({
|
|
168
|
+
type: TableColumnType.ObjectID,
|
|
169
|
+
required: true,
|
|
170
|
+
canReadOnRelationQuery: true,
|
|
171
|
+
title: "Team ID",
|
|
172
|
+
description: "ID of your OneUptime Team in which this object belongs",
|
|
173
|
+
example: "a1b2c3d4-e5f6-7890-ab12-cd34ef567890",
|
|
174
|
+
}),
|
|
175
|
+
Column({
|
|
176
|
+
type: ColumnType.ObjectID,
|
|
177
|
+
nullable: false,
|
|
178
|
+
transformer: ObjectID.getDatabaseTransformer(),
|
|
179
|
+
}),
|
|
180
|
+
__metadata("design:type", ObjectID)
|
|
181
|
+
], AIAgentOwnerTeam.prototype, "teamId", void 0);
|
|
182
|
+
__decorate([
|
|
183
|
+
ColumnAccessControl({
|
|
184
|
+
create: [
|
|
185
|
+
Permission.ProjectOwner,
|
|
186
|
+
Permission.ProjectAdmin,
|
|
187
|
+
Permission.ProjectMember,
|
|
188
|
+
Permission.CreateAIAgentOwnerTeam,
|
|
189
|
+
],
|
|
190
|
+
read: [
|
|
191
|
+
Permission.ProjectOwner,
|
|
192
|
+
Permission.ProjectAdmin,
|
|
193
|
+
Permission.ProjectMember,
|
|
194
|
+
Permission.ReadAIAgentOwnerTeam,
|
|
195
|
+
],
|
|
196
|
+
update: [],
|
|
197
|
+
}),
|
|
198
|
+
TableColumn({
|
|
199
|
+
manyToOneRelationColumn: "aiAgentId",
|
|
200
|
+
type: TableColumnType.Entity,
|
|
201
|
+
modelType: AIAgent,
|
|
202
|
+
title: "AI Agent",
|
|
203
|
+
description: "Relation to AI Agent Resource in which this object belongs",
|
|
204
|
+
example: "b2c3d4e5-f6a7-8901-bc23-de45fa678901",
|
|
205
|
+
}),
|
|
206
|
+
ManyToOne(() => {
|
|
207
|
+
return AIAgent;
|
|
208
|
+
}, {
|
|
209
|
+
eager: false,
|
|
210
|
+
nullable: true,
|
|
211
|
+
onDelete: "CASCADE",
|
|
212
|
+
orphanedRowAction: "nullify",
|
|
213
|
+
}),
|
|
214
|
+
JoinColumn({ name: "aiAgentId" }),
|
|
215
|
+
__metadata("design:type", AIAgent)
|
|
216
|
+
], AIAgentOwnerTeam.prototype, "aiAgent", void 0);
|
|
217
|
+
__decorate([
|
|
218
|
+
ColumnAccessControl({
|
|
219
|
+
create: [
|
|
220
|
+
Permission.ProjectOwner,
|
|
221
|
+
Permission.ProjectAdmin,
|
|
222
|
+
Permission.ProjectMember,
|
|
223
|
+
Permission.CreateAIAgentOwnerTeam,
|
|
224
|
+
],
|
|
225
|
+
read: [
|
|
226
|
+
Permission.ProjectOwner,
|
|
227
|
+
Permission.ProjectAdmin,
|
|
228
|
+
Permission.ProjectMember,
|
|
229
|
+
Permission.ReadAIAgentOwnerTeam,
|
|
230
|
+
],
|
|
231
|
+
update: [],
|
|
232
|
+
}),
|
|
233
|
+
Index(),
|
|
234
|
+
TableColumn({
|
|
235
|
+
type: TableColumnType.ObjectID,
|
|
236
|
+
required: true,
|
|
237
|
+
canReadOnRelationQuery: true,
|
|
238
|
+
title: "AI Agent ID",
|
|
239
|
+
description: "ID of your OneUptime AI Agent in which this object belongs",
|
|
240
|
+
example: "b2c3d4e5-f6a7-8901-bc23-de45fa678901",
|
|
241
|
+
}),
|
|
242
|
+
Column({
|
|
243
|
+
type: ColumnType.ObjectID,
|
|
244
|
+
nullable: false,
|
|
245
|
+
transformer: ObjectID.getDatabaseTransformer(),
|
|
246
|
+
}),
|
|
247
|
+
__metadata("design:type", ObjectID)
|
|
248
|
+
], AIAgentOwnerTeam.prototype, "aiAgentId", void 0);
|
|
249
|
+
__decorate([
|
|
250
|
+
ColumnAccessControl({
|
|
251
|
+
create: [
|
|
252
|
+
Permission.ProjectOwner,
|
|
253
|
+
Permission.ProjectAdmin,
|
|
254
|
+
Permission.ProjectMember,
|
|
255
|
+
Permission.CreateAIAgentOwnerTeam,
|
|
256
|
+
],
|
|
257
|
+
read: [
|
|
258
|
+
Permission.ProjectOwner,
|
|
259
|
+
Permission.ProjectAdmin,
|
|
260
|
+
Permission.ProjectMember,
|
|
261
|
+
Permission.ReadAIAgentOwnerTeam,
|
|
262
|
+
],
|
|
263
|
+
update: [],
|
|
264
|
+
}),
|
|
265
|
+
TableColumn({
|
|
266
|
+
manyToOneRelationColumn: "createdByUserId",
|
|
267
|
+
type: TableColumnType.Entity,
|
|
268
|
+
modelType: User,
|
|
269
|
+
title: "Created by User",
|
|
270
|
+
description: "Relation to User who created this object (if this object was created by a User)",
|
|
271
|
+
example: "c3d4e5f6-a7b8-9012-cd34-ef56ab789012",
|
|
272
|
+
}),
|
|
273
|
+
ManyToOne(() => {
|
|
274
|
+
return User;
|
|
275
|
+
}, {
|
|
276
|
+
eager: false,
|
|
277
|
+
nullable: true,
|
|
278
|
+
onDelete: "SET NULL",
|
|
279
|
+
orphanedRowAction: "nullify",
|
|
280
|
+
}),
|
|
281
|
+
JoinColumn({ name: "createdByUserId" }),
|
|
282
|
+
__metadata("design:type", User)
|
|
283
|
+
], AIAgentOwnerTeam.prototype, "createdByUser", void 0);
|
|
284
|
+
__decorate([
|
|
285
|
+
ColumnAccessControl({
|
|
286
|
+
create: [
|
|
287
|
+
Permission.ProjectOwner,
|
|
288
|
+
Permission.ProjectAdmin,
|
|
289
|
+
Permission.ProjectMember,
|
|
290
|
+
Permission.CreateAIAgentOwnerTeam,
|
|
291
|
+
],
|
|
292
|
+
read: [
|
|
293
|
+
Permission.ProjectOwner,
|
|
294
|
+
Permission.ProjectAdmin,
|
|
295
|
+
Permission.ProjectMember,
|
|
296
|
+
Permission.ReadAIAgentOwnerTeam,
|
|
297
|
+
],
|
|
298
|
+
update: [],
|
|
299
|
+
}),
|
|
300
|
+
TableColumn({
|
|
301
|
+
type: TableColumnType.ObjectID,
|
|
302
|
+
title: "Created by User ID",
|
|
303
|
+
description: "User ID who created this object (if this object was created by a User)",
|
|
304
|
+
example: "c3d4e5f6-a7b8-9012-cd34-ef56ab789012",
|
|
305
|
+
}),
|
|
306
|
+
Column({
|
|
307
|
+
type: ColumnType.ObjectID,
|
|
308
|
+
nullable: true,
|
|
309
|
+
transformer: ObjectID.getDatabaseTransformer(),
|
|
310
|
+
}),
|
|
311
|
+
__metadata("design:type", ObjectID)
|
|
312
|
+
], AIAgentOwnerTeam.prototype, "createdByUserId", void 0);
|
|
313
|
+
__decorate([
|
|
314
|
+
ColumnAccessControl({
|
|
315
|
+
create: [],
|
|
316
|
+
read: [
|
|
317
|
+
Permission.ProjectOwner,
|
|
318
|
+
Permission.ProjectAdmin,
|
|
319
|
+
Permission.ProjectMember,
|
|
320
|
+
Permission.ReadAIAgentOwnerTeam,
|
|
321
|
+
],
|
|
322
|
+
update: [],
|
|
323
|
+
}),
|
|
324
|
+
TableColumn({
|
|
325
|
+
manyToOneRelationColumn: "deletedByUserId",
|
|
326
|
+
type: TableColumnType.Entity,
|
|
327
|
+
title: "Deleted by User",
|
|
328
|
+
modelType: User,
|
|
329
|
+
description: "Relation to User who deleted this object (if this object was deleted by a User)",
|
|
330
|
+
example: "d4e5f6a7-b8c9-0123-de45-fa67bc890123",
|
|
331
|
+
}),
|
|
332
|
+
ManyToOne(() => {
|
|
333
|
+
return User;
|
|
334
|
+
}, {
|
|
335
|
+
cascade: false,
|
|
336
|
+
eager: false,
|
|
337
|
+
nullable: true,
|
|
338
|
+
onDelete: "SET NULL",
|
|
339
|
+
orphanedRowAction: "nullify",
|
|
340
|
+
}),
|
|
341
|
+
JoinColumn({ name: "deletedByUserId" }),
|
|
342
|
+
__metadata("design:type", User)
|
|
343
|
+
], AIAgentOwnerTeam.prototype, "deletedByUser", void 0);
|
|
344
|
+
__decorate([
|
|
345
|
+
ColumnAccessControl({
|
|
346
|
+
create: [],
|
|
347
|
+
read: [
|
|
348
|
+
Permission.ProjectOwner,
|
|
349
|
+
Permission.ProjectAdmin,
|
|
350
|
+
Permission.ProjectMember,
|
|
351
|
+
Permission.ReadAIAgentOwnerTeam,
|
|
352
|
+
],
|
|
353
|
+
update: [],
|
|
354
|
+
}),
|
|
355
|
+
TableColumn({
|
|
356
|
+
type: TableColumnType.ObjectID,
|
|
357
|
+
title: "Deleted by User ID",
|
|
358
|
+
description: "User ID who deleted this object (if this object was deleted by a User)",
|
|
359
|
+
example: "d4e5f6a7-b8c9-0123-de45-fa67bc890123",
|
|
360
|
+
}),
|
|
361
|
+
Column({
|
|
362
|
+
type: ColumnType.ObjectID,
|
|
363
|
+
nullable: true,
|
|
364
|
+
transformer: ObjectID.getDatabaseTransformer(),
|
|
365
|
+
}),
|
|
366
|
+
__metadata("design:type", ObjectID)
|
|
367
|
+
], AIAgentOwnerTeam.prototype, "deletedByUserId", void 0);
|
|
368
|
+
__decorate([
|
|
369
|
+
ColumnAccessControl({
|
|
370
|
+
create: [],
|
|
371
|
+
read: [
|
|
372
|
+
Permission.ProjectOwner,
|
|
373
|
+
Permission.ProjectAdmin,
|
|
374
|
+
Permission.ProjectMember,
|
|
375
|
+
Permission.ReadAIAgentOwnerTeam,
|
|
376
|
+
],
|
|
377
|
+
update: [],
|
|
378
|
+
}),
|
|
379
|
+
Index(),
|
|
380
|
+
TableColumn({
|
|
381
|
+
type: TableColumnType.Boolean,
|
|
382
|
+
computed: true,
|
|
383
|
+
hideColumnInDocumentation: true,
|
|
384
|
+
required: true,
|
|
385
|
+
isDefaultValueColumn: true,
|
|
386
|
+
title: "Are Owners Notified",
|
|
387
|
+
description: "Are owners notified of this resource ownership?",
|
|
388
|
+
defaultValue: false,
|
|
389
|
+
example: false,
|
|
390
|
+
}),
|
|
391
|
+
Column({
|
|
392
|
+
type: ColumnType.Boolean,
|
|
393
|
+
nullable: false,
|
|
394
|
+
default: false,
|
|
395
|
+
}),
|
|
396
|
+
__metadata("design:type", Boolean)
|
|
397
|
+
], AIAgentOwnerTeam.prototype, "isOwnerNotified", void 0);
|
|
398
|
+
AIAgentOwnerTeam = __decorate([
|
|
399
|
+
EnableDocumentation(),
|
|
400
|
+
TenantColumn("projectId"),
|
|
401
|
+
TableBillingAccessControl({
|
|
402
|
+
create: PlanType.Growth,
|
|
403
|
+
read: PlanType.Free,
|
|
404
|
+
update: PlanType.Growth,
|
|
405
|
+
delete: PlanType.Free,
|
|
406
|
+
}),
|
|
407
|
+
TableAccessControl({
|
|
408
|
+
create: [
|
|
409
|
+
Permission.ProjectOwner,
|
|
410
|
+
Permission.ProjectAdmin,
|
|
411
|
+
Permission.ProjectMember,
|
|
412
|
+
Permission.CreateAIAgentOwnerTeam,
|
|
413
|
+
],
|
|
414
|
+
read: [
|
|
415
|
+
Permission.ProjectOwner,
|
|
416
|
+
Permission.ProjectAdmin,
|
|
417
|
+
Permission.ProjectMember,
|
|
418
|
+
Permission.ReadAIAgentOwnerTeam,
|
|
419
|
+
],
|
|
420
|
+
delete: [
|
|
421
|
+
Permission.ProjectOwner,
|
|
422
|
+
Permission.ProjectAdmin,
|
|
423
|
+
Permission.ProjectMember,
|
|
424
|
+
Permission.DeleteAIAgentOwnerTeam,
|
|
425
|
+
],
|
|
426
|
+
update: [
|
|
427
|
+
Permission.ProjectOwner,
|
|
428
|
+
Permission.ProjectAdmin,
|
|
429
|
+
Permission.ProjectMember,
|
|
430
|
+
Permission.EditAIAgentOwnerTeam,
|
|
431
|
+
],
|
|
432
|
+
}),
|
|
433
|
+
EnableWorkflow({
|
|
434
|
+
create: true,
|
|
435
|
+
delete: true,
|
|
436
|
+
update: true,
|
|
437
|
+
read: true,
|
|
438
|
+
}),
|
|
439
|
+
CrudApiEndpoint(new Route("/ai-agent-owner-team")),
|
|
440
|
+
TableMetadata({
|
|
441
|
+
tableName: "AIAgentOwnerTeam",
|
|
442
|
+
singularName: "AI Agent Owner Team",
|
|
443
|
+
pluralName: "AI Agent Owner Teams",
|
|
444
|
+
icon: IconProp.Brain,
|
|
445
|
+
tableDescription: "Add teams as owners to your AI agents.",
|
|
446
|
+
}),
|
|
447
|
+
Entity({
|
|
448
|
+
name: "AIAgentOwnerTeam",
|
|
449
|
+
})
|
|
450
|
+
], AIAgentOwnerTeam);
|
|
451
|
+
export default AIAgentOwnerTeam;
|
|
452
|
+
//# sourceMappingURL=AIAgentOwnerTeam.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AIAgentOwnerTeam.js","sourceRoot":"","sources":["../../../../Models/DatabaseModels/AIAgentOwnerTeam.ts"],"names":[],"mappings":"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"}
|