@uniteverses/shared 1.0.129 → 1.0.130
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/dist/domains/ceos/technology/ceos/manage/index.d.ts +12 -0
- package/dist/domains/ceos/technology/ceos/manage/index.js +28 -0
- package/dist/domains/ceos/technology/ceos/manage/ordering/constants.d.ts +4 -0
- package/dist/domains/ceos/technology/ceos/manage/ordering/constants.js +7 -0
- package/dist/domains/ceos/technology/ceos/manage/ordering/types.d.ts +1 -0
- package/dist/domains/ceos/technology/ceos/manage/ordering/types.js +2 -0
- package/dist/domains/ceos/technology/ceos/manage/organization/types.d.ts +13 -0
- package/dist/domains/ceos/technology/ceos/manage/organization/types.js +2 -0
- package/dist/domains/ceos/technology/ceos/manage/project/types.d.ts +19 -0
- package/dist/domains/ceos/technology/ceos/manage/project/types.js +2 -0
- package/dist/domains/ceos/technology/ceos/manage/project_group/types.d.ts +18 -0
- package/dist/domains/ceos/technology/ceos/manage/project_group/types.js +2 -0
- package/dist/domains/ceos/technology/ceos/manage/project_stage/types.d.ts +19 -0
- package/dist/domains/ceos/technology/ceos/manage/project_stage/types.js +2 -0
- package/dist/domains/ceos/technology/ceos/manage/project_stage_goal/types.d.ts +19 -0
- package/dist/domains/ceos/technology/ceos/manage/project_stage_goal/types.js +2 -0
- package/dist/domains/ceos/technology/ceos/manage/project_stage_goal_group/types.d.ts +21 -0
- package/dist/domains/ceos/technology/ceos/manage/project_stage_goal_group/types.js +2 -0
- package/dist/domains/ceos/technology/ceos/manage/project_stage_group/types.d.ts +21 -0
- package/dist/domains/ceos/technology/ceos/manage/project_stage_group/types.js +2 -0
- package/dist/domains/ceos/technology/ceos/manage/project_task/constants.d.ts +7 -0
- package/dist/domains/ceos/technology/ceos/manage/project_task/constants.js +12 -0
- package/dist/domains/ceos/technology/ceos/manage/project_task/types.d.ts +23 -0
- package/dist/domains/ceos/technology/ceos/manage/project_task/types.js +2 -0
- package/dist/domains/ceos/technology/ceos/manage/project_task_group/types.d.ts +21 -0
- package/dist/domains/ceos/technology/ceos/manage/project_task_group/types.js +2 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export * from "./ordering/types";
|
|
2
|
+
export * from "./ordering/constants";
|
|
3
|
+
export * from "./organization/types";
|
|
4
|
+
export * from "./project_group/types";
|
|
5
|
+
export * from "./project/types";
|
|
6
|
+
export * from "./project_stage_group/types";
|
|
7
|
+
export * from "./project_stage/types";
|
|
8
|
+
export * from "./project_stage_goal_group/types";
|
|
9
|
+
export * from "./project_stage_goal/types";
|
|
10
|
+
export * from "./project_task_group/types";
|
|
11
|
+
export * from "./project_task/types";
|
|
12
|
+
export * from "./project_task/constants";
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./ordering/types"), exports);
|
|
18
|
+
__exportStar(require("./ordering/constants"), exports);
|
|
19
|
+
__exportStar(require("./organization/types"), exports);
|
|
20
|
+
__exportStar(require("./project_group/types"), exports);
|
|
21
|
+
__exportStar(require("./project/types"), exports);
|
|
22
|
+
__exportStar(require("./project_stage_group/types"), exports);
|
|
23
|
+
__exportStar(require("./project_stage/types"), exports);
|
|
24
|
+
__exportStar(require("./project_stage_goal_group/types"), exports);
|
|
25
|
+
__exportStar(require("./project_stage_goal/types"), exports);
|
|
26
|
+
__exportStar(require("./project_task_group/types"), exports);
|
|
27
|
+
__exportStar(require("./project_task/types"), exports);
|
|
28
|
+
__exportStar(require("./project_task/constants"), exports);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type CeosTechnologyCeosManageMoveDirection = "up" | "down";
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export type CeosTechnologyCeosManageOrganization = {
|
|
2
|
+
id: string;
|
|
3
|
+
name: string;
|
|
4
|
+
createdByUserId: string;
|
|
5
|
+
createdAt: string;
|
|
6
|
+
updatedAt: string;
|
|
7
|
+
};
|
|
8
|
+
export type CeosTechnologyCeosManageOrganizationCreateInput = {
|
|
9
|
+
name: string;
|
|
10
|
+
};
|
|
11
|
+
export type CeosTechnologyCeosManageOrganizationUpdateInput = {
|
|
12
|
+
name: string;
|
|
13
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export type CeosTechnologyCeosManageProject = {
|
|
2
|
+
id: string;
|
|
3
|
+
projectGroupId: string;
|
|
4
|
+
name: string;
|
|
5
|
+
description: string | null;
|
|
6
|
+
position: number;
|
|
7
|
+
createdByUserId: string;
|
|
8
|
+
createdAt: string;
|
|
9
|
+
updatedAt: string;
|
|
10
|
+
};
|
|
11
|
+
export type CeosTechnologyCeosManageProjectCreateInput = {
|
|
12
|
+
projectGroupId: string;
|
|
13
|
+
name: string;
|
|
14
|
+
description: string | null;
|
|
15
|
+
};
|
|
16
|
+
export type CeosTechnologyCeosManageProjectUpdateInput = {
|
|
17
|
+
name: string;
|
|
18
|
+
description: string | null;
|
|
19
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export type CeosTechnologyCeosManageProjectGroup = {
|
|
2
|
+
id: string;
|
|
3
|
+
organizationId: string;
|
|
4
|
+
parentProjectGroupId: string | null;
|
|
5
|
+
name: string;
|
|
6
|
+
position: number;
|
|
7
|
+
createdByUserId: string;
|
|
8
|
+
createdAt: string;
|
|
9
|
+
updatedAt: string;
|
|
10
|
+
};
|
|
11
|
+
export type CeosTechnologyCeosManageProjectGroupCreateInput = {
|
|
12
|
+
organizationId: string;
|
|
13
|
+
parentProjectGroupId: string | null;
|
|
14
|
+
name: string;
|
|
15
|
+
};
|
|
16
|
+
export type CeosTechnologyCeosManageProjectGroupUpdateInput = {
|
|
17
|
+
name: string;
|
|
18
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export type CeosTechnologyCeosManageProjectStage = {
|
|
2
|
+
id: string;
|
|
3
|
+
projectStageGroupId: string;
|
|
4
|
+
name: string;
|
|
5
|
+
description: string | null;
|
|
6
|
+
position: number;
|
|
7
|
+
createdByUserId: string;
|
|
8
|
+
createdAt: string;
|
|
9
|
+
updatedAt: string;
|
|
10
|
+
};
|
|
11
|
+
export type CeosTechnologyCeosManageProjectStageCreateInput = {
|
|
12
|
+
projectStageGroupId: string;
|
|
13
|
+
name: string;
|
|
14
|
+
description: string | null;
|
|
15
|
+
};
|
|
16
|
+
export type CeosTechnologyCeosManageProjectStageUpdateInput = {
|
|
17
|
+
name: string;
|
|
18
|
+
description: string | null;
|
|
19
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export type CeosTechnologyCeosManageProjectStageGoal = {
|
|
2
|
+
id: string;
|
|
3
|
+
projectStageGoalGroupId: string;
|
|
4
|
+
name: string;
|
|
5
|
+
description: string | null;
|
|
6
|
+
position: number;
|
|
7
|
+
createdByUserId: string;
|
|
8
|
+
createdAt: string;
|
|
9
|
+
updatedAt: string;
|
|
10
|
+
};
|
|
11
|
+
export type CeosTechnologyCeosManageProjectStageGoalCreateInput = {
|
|
12
|
+
projectStageGoalGroupId: string;
|
|
13
|
+
name: string;
|
|
14
|
+
description: string | null;
|
|
15
|
+
};
|
|
16
|
+
export type CeosTechnologyCeosManageProjectStageGoalUpdateInput = {
|
|
17
|
+
name: string;
|
|
18
|
+
description: string | null;
|
|
19
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export type CeosTechnologyCeosManageProjectStageGoalGroup = {
|
|
2
|
+
id: string;
|
|
3
|
+
projectStageId: string;
|
|
4
|
+
parentProjectStageGoalGroupId: string | null;
|
|
5
|
+
name: string;
|
|
6
|
+
description: string | null;
|
|
7
|
+
position: number;
|
|
8
|
+
createdByUserId: string;
|
|
9
|
+
createdAt: string;
|
|
10
|
+
updatedAt: string;
|
|
11
|
+
};
|
|
12
|
+
export type CeosTechnologyCeosManageProjectStageGoalGroupCreateInput = {
|
|
13
|
+
projectStageId: string;
|
|
14
|
+
parentProjectStageGoalGroupId: string | null;
|
|
15
|
+
name: string;
|
|
16
|
+
description: string | null;
|
|
17
|
+
};
|
|
18
|
+
export type CeosTechnologyCeosManageProjectStageGoalGroupUpdateInput = {
|
|
19
|
+
name: string;
|
|
20
|
+
description: string | null;
|
|
21
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export type CeosTechnologyCeosManageProjectStageGroup = {
|
|
2
|
+
id: string;
|
|
3
|
+
projectId: string;
|
|
4
|
+
parentProjectStageGroupId: string | null;
|
|
5
|
+
name: string;
|
|
6
|
+
description: string | null;
|
|
7
|
+
position: number;
|
|
8
|
+
createdByUserId: string;
|
|
9
|
+
createdAt: string;
|
|
10
|
+
updatedAt: string;
|
|
11
|
+
};
|
|
12
|
+
export type CeosTechnologyCeosManageProjectStageGroupCreateInput = {
|
|
13
|
+
projectId: string;
|
|
14
|
+
parentProjectStageGroupId: string | null;
|
|
15
|
+
name: string;
|
|
16
|
+
description: string | null;
|
|
17
|
+
};
|
|
18
|
+
export type CeosTechnologyCeosManageProjectStageGroupUpdateInput = {
|
|
19
|
+
name: string;
|
|
20
|
+
description: string | null;
|
|
21
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CEOS_TECHNOLOGY_CEOS_MANAGE_PROJECT_TASK_RECURRENCE = void 0;
|
|
4
|
+
// Mirrors the ctcm_project_task_recurrence pg enum. Keep in sync with the
|
|
5
|
+
// prisma enum values.
|
|
6
|
+
exports.CEOS_TECHNOLOGY_CEOS_MANAGE_PROJECT_TASK_RECURRENCE = {
|
|
7
|
+
ONCE: "once",
|
|
8
|
+
DAILY: "daily",
|
|
9
|
+
WEEKLY: "weekly",
|
|
10
|
+
MONTHLY: "monthly",
|
|
11
|
+
YEARLY: "yearly",
|
|
12
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export type CeosTechnologyCeosManageProjectTaskRecurrence = "once" | "daily" | "weekly" | "monthly" | "yearly";
|
|
2
|
+
export type CeosTechnologyCeosManageProjectTask = {
|
|
3
|
+
id: string;
|
|
4
|
+
projectTaskGroupId: string;
|
|
5
|
+
name: string;
|
|
6
|
+
description: string | null;
|
|
7
|
+
recurrence: CeosTechnologyCeosManageProjectTaskRecurrence;
|
|
8
|
+
position: number;
|
|
9
|
+
createdByUserId: string;
|
|
10
|
+
createdAt: string;
|
|
11
|
+
updatedAt: string;
|
|
12
|
+
};
|
|
13
|
+
export type CeosTechnologyCeosManageProjectTaskCreateInput = {
|
|
14
|
+
projectTaskGroupId: string;
|
|
15
|
+
name: string;
|
|
16
|
+
description: string | null;
|
|
17
|
+
recurrence: CeosTechnologyCeosManageProjectTaskRecurrence;
|
|
18
|
+
};
|
|
19
|
+
export type CeosTechnologyCeosManageProjectTaskUpdateInput = {
|
|
20
|
+
name: string;
|
|
21
|
+
description: string | null;
|
|
22
|
+
recurrence: CeosTechnologyCeosManageProjectTaskRecurrence;
|
|
23
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export type CeosTechnologyCeosManageProjectTaskGroup = {
|
|
2
|
+
id: string;
|
|
3
|
+
projectId: string;
|
|
4
|
+
parentProjectTaskGroupId: string | null;
|
|
5
|
+
name: string;
|
|
6
|
+
description: string | null;
|
|
7
|
+
position: number;
|
|
8
|
+
createdByUserId: string;
|
|
9
|
+
createdAt: string;
|
|
10
|
+
updatedAt: string;
|
|
11
|
+
};
|
|
12
|
+
export type CeosTechnologyCeosManageProjectTaskGroupCreateInput = {
|
|
13
|
+
projectId: string;
|
|
14
|
+
parentProjectTaskGroupId: string | null;
|
|
15
|
+
name: string;
|
|
16
|
+
description: string | null;
|
|
17
|
+
};
|
|
18
|
+
export type CeosTechnologyCeosManageProjectTaskGroupUpdateInput = {
|
|
19
|
+
name: string;
|
|
20
|
+
description: string | null;
|
|
21
|
+
};
|
package/dist/index.d.ts
CHANGED
|
@@ -4,3 +4,4 @@ export * from "./domains/students/communication/students/practice";
|
|
|
4
4
|
export * from "./domains/students/life/students/live";
|
|
5
5
|
export * from "./domains/lawyers/real_estate/assistants/research";
|
|
6
6
|
export * from "./domains/artists/gamestory/directors/develop";
|
|
7
|
+
export * from "./domains/ceos/technology/ceos/manage";
|
package/dist/index.js
CHANGED
|
@@ -20,3 +20,4 @@ __exportStar(require("./domains/students/communication/students/practice"), expo
|
|
|
20
20
|
__exportStar(require("./domains/students/life/students/live"), exports);
|
|
21
21
|
__exportStar(require("./domains/lawyers/real_estate/assistants/research"), exports);
|
|
22
22
|
__exportStar(require("./domains/artists/gamestory/directors/develop"), exports);
|
|
23
|
+
__exportStar(require("./domains/ceos/technology/ceos/manage"), exports);
|