@uniteverses/shared 1.0.140 → 1.0.141
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 +4 -0
- package/dist/domains/students/life/students/live/index.d.ts +3 -0
- package/dist/domains/students/life/students/live/index.js +3 -0
- package/dist/domains/students/life/students/live/principle/types.d.ts +16 -0
- package/dist/domains/students/life/students/live/principle/types.js +2 -0
- package/dist/domains/students/life/students/live/routine/types.d.ts +15 -0
- package/dist/domains/students/life/students/live/routine/types.js +2 -0
- package/dist/domains/students/life/students/live/routine-activity/types.d.ts +19 -0
- package/dist/domains/students/life/students/live/routine-activity/types.js +2 -0
- package/package.json +1 -1
|
@@ -3,6 +3,7 @@ export type StudentsLifeStudentsLiveGoal = {
|
|
|
3
3
|
userId: string;
|
|
4
4
|
content: string;
|
|
5
5
|
position: number;
|
|
6
|
+
done: boolean;
|
|
6
7
|
createdAt: string;
|
|
7
8
|
};
|
|
8
9
|
export type StudentsLifeStudentsLiveGoalCreateInput = {
|
|
@@ -14,3 +15,6 @@ export type StudentsLifeStudentsLiveGoalUpdateInput = {
|
|
|
14
15
|
export type StudentsLifeStudentsLiveGoalReorderInput = {
|
|
15
16
|
ids: string[];
|
|
16
17
|
};
|
|
18
|
+
export type StudentsLifeStudentsLiveGoalSetDoneInput = {
|
|
19
|
+
done: boolean;
|
|
20
|
+
};
|
|
@@ -6,3 +6,6 @@ export * from "./person-tag/types";
|
|
|
6
6
|
export * from "./person-tag-assignment/types";
|
|
7
7
|
export * from "./diary-entry/types";
|
|
8
8
|
export * from "./goal/types";
|
|
9
|
+
export * from "./principle/types";
|
|
10
|
+
export * from "./routine/types";
|
|
11
|
+
export * from "./routine-activity/types";
|
|
@@ -22,3 +22,6 @@ __exportStar(require("./person-tag/types"), exports);
|
|
|
22
22
|
__exportStar(require("./person-tag-assignment/types"), exports);
|
|
23
23
|
__exportStar(require("./diary-entry/types"), exports);
|
|
24
24
|
__exportStar(require("./goal/types"), exports);
|
|
25
|
+
__exportStar(require("./principle/types"), exports);
|
|
26
|
+
__exportStar(require("./routine/types"), exports);
|
|
27
|
+
__exportStar(require("./routine-activity/types"), exports);
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export type StudentsLifeStudentsLivePrinciple = {
|
|
2
|
+
id: string;
|
|
3
|
+
userId: string;
|
|
4
|
+
content: string;
|
|
5
|
+
position: number;
|
|
6
|
+
createdAt: string;
|
|
7
|
+
};
|
|
8
|
+
export type StudentsLifeStudentsLivePrincipleCreateInput = {
|
|
9
|
+
content: string;
|
|
10
|
+
};
|
|
11
|
+
export type StudentsLifeStudentsLivePrincipleUpdateInput = {
|
|
12
|
+
content: string;
|
|
13
|
+
};
|
|
14
|
+
export type StudentsLifeStudentsLivePrincipleReorderInput = {
|
|
15
|
+
ids: string[];
|
|
16
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export type StudentsLifeStudentsLiveRoutine = {
|
|
2
|
+
id: string;
|
|
3
|
+
userId: string;
|
|
4
|
+
name: string;
|
|
5
|
+
description: string | null;
|
|
6
|
+
createdAt: string;
|
|
7
|
+
};
|
|
8
|
+
export type StudentsLifeStudentsLiveRoutineCreateInput = {
|
|
9
|
+
name: string;
|
|
10
|
+
description?: string | null;
|
|
11
|
+
};
|
|
12
|
+
export type StudentsLifeStudentsLiveRoutineUpdateInput = {
|
|
13
|
+
name: string;
|
|
14
|
+
description?: string | null;
|
|
15
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export type StudentsLifeStudentsLiveRoutineActivity = {
|
|
2
|
+
id: string;
|
|
3
|
+
userId: string;
|
|
4
|
+
routineId: string;
|
|
5
|
+
content: string;
|
|
6
|
+
position: number;
|
|
7
|
+
createdAt: string;
|
|
8
|
+
};
|
|
9
|
+
export type StudentsLifeStudentsLiveRoutineActivityCreateInput = {
|
|
10
|
+
routineId: string;
|
|
11
|
+
content: string;
|
|
12
|
+
};
|
|
13
|
+
export type StudentsLifeStudentsLiveRoutineActivityUpdateInput = {
|
|
14
|
+
content: string;
|
|
15
|
+
};
|
|
16
|
+
export type StudentsLifeStudentsLiveRoutineActivityReorderInput = {
|
|
17
|
+
routineId: string;
|
|
18
|
+
ids: string[];
|
|
19
|
+
};
|