@uniteverses/shared 1.0.144 → 1.0.146
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/students/life/students/live/goal/types.d.ts +5 -0
- package/dist/domains/students/life/students/live/index.d.ts +1 -0
- package/dist/domains/students/life/students/live/index.js +1 -0
- package/dist/domains/students/life/students/live/person-goal/types.d.ts +23 -0
- package/dist/domains/students/life/students/live/person-goal/types.js +2 -0
- package/dist/domains/students/life/students/live/routine/types.d.ts +4 -0
- package/package.json +1 -1
|
@@ -4,10 +4,12 @@ export type StudentsLifeStudentsLiveGoal = {
|
|
|
4
4
|
content: string;
|
|
5
5
|
position: number;
|
|
6
6
|
done: boolean;
|
|
7
|
+
routineActivityId: string | null;
|
|
7
8
|
createdAt: string;
|
|
8
9
|
};
|
|
9
10
|
export type StudentsLifeStudentsLiveGoalCreateInput = {
|
|
10
11
|
content: string;
|
|
12
|
+
routineActivityId?: string | null;
|
|
11
13
|
};
|
|
12
14
|
export type StudentsLifeStudentsLiveGoalUpdateInput = {
|
|
13
15
|
content: string;
|
|
@@ -18,3 +20,6 @@ export type StudentsLifeStudentsLiveGoalReorderInput = {
|
|
|
18
20
|
export type StudentsLifeStudentsLiveGoalSetDoneInput = {
|
|
19
21
|
done: boolean;
|
|
20
22
|
};
|
|
23
|
+
export type StudentsLifeStudentsLiveGoalSetRoutineActivityInput = {
|
|
24
|
+
routineActivityId: string | null;
|
|
25
|
+
};
|
|
@@ -4,6 +4,7 @@ export * from "./ideal-influence/types";
|
|
|
4
4
|
export * from "./person/types";
|
|
5
5
|
export * from "./person-tag/types";
|
|
6
6
|
export * from "./person-tag-assignment/types";
|
|
7
|
+
export * from "./person-goal/types";
|
|
7
8
|
export * from "./diary-entry/types";
|
|
8
9
|
export * from "./goal/types";
|
|
9
10
|
export * from "./principle/types";
|
|
@@ -20,6 +20,7 @@ __exportStar(require("./ideal-influence/types"), exports);
|
|
|
20
20
|
__exportStar(require("./person/types"), exports);
|
|
21
21
|
__exportStar(require("./person-tag/types"), exports);
|
|
22
22
|
__exportStar(require("./person-tag-assignment/types"), exports);
|
|
23
|
+
__exportStar(require("./person-goal/types"), exports);
|
|
23
24
|
__exportStar(require("./diary-entry/types"), exports);
|
|
24
25
|
__exportStar(require("./goal/types"), exports);
|
|
25
26
|
__exportStar(require("./principle/types"), exports);
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export type StudentsLifeStudentsLivePersonGoal = {
|
|
2
|
+
id: string;
|
|
3
|
+
userId: string;
|
|
4
|
+
personId: string;
|
|
5
|
+
content: string;
|
|
6
|
+
position: number;
|
|
7
|
+
done: boolean;
|
|
8
|
+
createdAt: string;
|
|
9
|
+
};
|
|
10
|
+
export type StudentsLifeStudentsLivePersonGoalCreateInput = {
|
|
11
|
+
personId: string;
|
|
12
|
+
content: string;
|
|
13
|
+
};
|
|
14
|
+
export type StudentsLifeStudentsLivePersonGoalUpdateInput = {
|
|
15
|
+
content: string;
|
|
16
|
+
};
|
|
17
|
+
export type StudentsLifeStudentsLivePersonGoalReorderInput = {
|
|
18
|
+
personId: string;
|
|
19
|
+
ids: string[];
|
|
20
|
+
};
|
|
21
|
+
export type StudentsLifeStudentsLivePersonGoalSetDoneInput = {
|
|
22
|
+
done: boolean;
|
|
23
|
+
};
|
|
@@ -3,6 +3,7 @@ export type StudentsLifeStudentsLiveRoutine = {
|
|
|
3
3
|
userId: string;
|
|
4
4
|
name: string;
|
|
5
5
|
description: string | null;
|
|
6
|
+
position: number;
|
|
6
7
|
createdAt: string;
|
|
7
8
|
};
|
|
8
9
|
export type StudentsLifeStudentsLiveRoutineCreateInput = {
|
|
@@ -13,3 +14,6 @@ export type StudentsLifeStudentsLiveRoutineUpdateInput = {
|
|
|
13
14
|
name: string;
|
|
14
15
|
description?: string | null;
|
|
15
16
|
};
|
|
17
|
+
export type StudentsLifeStudentsLiveRoutineReorderInput = {
|
|
18
|
+
ids: string[];
|
|
19
|
+
};
|