@uniteverses/shared 1.0.149 → 1.0.153
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/ideal-character/types.d.ts +14 -0
- package/dist/domains/students/life/students/live/ideal-character/types.js +2 -0
- package/dist/domains/students/life/students/live/ideal-character-group/types.d.ts +15 -0
- package/dist/domains/students/life/students/live/ideal-character-group/types.js +2 -0
- package/dist/domains/students/life/students/live/ideal-goal/types.d.ts +15 -0
- package/dist/domains/students/life/students/live/ideal-goal/types.js +2 -0
- package/dist/domains/students/life/students/live/ideal-inspiration/types.d.ts +14 -0
- package/dist/domains/students/life/students/live/ideal-inspiration/types.js +2 -0
- package/dist/domains/students/life/students/live/ideal-inspiration-group/types.d.ts +15 -0
- package/dist/domains/students/life/students/live/ideal-inspiration-group/types.js +2 -0
- package/dist/domains/students/life/students/live/index.d.ts +5 -0
- package/dist/domains/students/life/students/live/index.js +5 -0
- package/dist/domains/students/life/students/meditate/song/types.d.ts +3 -0
- package/package.json +1 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export type StudentsLifeStudentsLiveIdealCharacter = {
|
|
2
|
+
id: string;
|
|
3
|
+
userId: string;
|
|
4
|
+
idealCharacterGroupId: string;
|
|
5
|
+
content: string;
|
|
6
|
+
createdAt: string;
|
|
7
|
+
};
|
|
8
|
+
export type StudentsLifeStudentsLiveIdealCharacterCreateInput = {
|
|
9
|
+
idealCharacterGroupId: string;
|
|
10
|
+
content: string;
|
|
11
|
+
};
|
|
12
|
+
export type StudentsLifeStudentsLiveIdealCharacterUpdateInput = {
|
|
13
|
+
content: string;
|
|
14
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export type StudentsLifeStudentsLiveIdealCharacterGroup = {
|
|
2
|
+
id: string;
|
|
3
|
+
userId: string;
|
|
4
|
+
name: string;
|
|
5
|
+
description: string | null;
|
|
6
|
+
createdAt: string;
|
|
7
|
+
};
|
|
8
|
+
export type StudentsLifeStudentsLiveIdealCharacterGroupCreateInput = {
|
|
9
|
+
name: string;
|
|
10
|
+
description?: string | null;
|
|
11
|
+
};
|
|
12
|
+
export type StudentsLifeStudentsLiveIdealCharacterGroupUpdateInput = {
|
|
13
|
+
name: string;
|
|
14
|
+
description?: string | null;
|
|
15
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export type StudentsLifeStudentsLiveIdealGoal = {
|
|
2
|
+
id: string;
|
|
3
|
+
userId: string;
|
|
4
|
+
isGood: boolean;
|
|
5
|
+
content: string;
|
|
6
|
+
createdAt: string;
|
|
7
|
+
};
|
|
8
|
+
export type StudentsLifeStudentsLiveIdealGoalCreateInput = {
|
|
9
|
+
isGood: boolean;
|
|
10
|
+
content: string;
|
|
11
|
+
};
|
|
12
|
+
export type StudentsLifeStudentsLiveIdealGoalUpdateInput = {
|
|
13
|
+
isGood: boolean;
|
|
14
|
+
content: string;
|
|
15
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export type StudentsLifeStudentsLiveIdealInspiration = {
|
|
2
|
+
id: string;
|
|
3
|
+
userId: string;
|
|
4
|
+
idealInspirationGroupId: string;
|
|
5
|
+
content: string;
|
|
6
|
+
createdAt: string;
|
|
7
|
+
};
|
|
8
|
+
export type StudentsLifeStudentsLiveIdealInspirationCreateInput = {
|
|
9
|
+
idealInspirationGroupId: string;
|
|
10
|
+
content: string;
|
|
11
|
+
};
|
|
12
|
+
export type StudentsLifeStudentsLiveIdealInspirationUpdateInput = {
|
|
13
|
+
content: string;
|
|
14
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export type StudentsLifeStudentsLiveIdealInspirationGroup = {
|
|
2
|
+
id: string;
|
|
3
|
+
userId: string;
|
|
4
|
+
name: string;
|
|
5
|
+
description: string | null;
|
|
6
|
+
createdAt: string;
|
|
7
|
+
};
|
|
8
|
+
export type StudentsLifeStudentsLiveIdealInspirationGroupCreateInput = {
|
|
9
|
+
name: string;
|
|
10
|
+
description?: string | null;
|
|
11
|
+
};
|
|
12
|
+
export type StudentsLifeStudentsLiveIdealInspirationGroupUpdateInput = {
|
|
13
|
+
name: string;
|
|
14
|
+
description?: string | null;
|
|
15
|
+
};
|
|
@@ -10,3 +10,8 @@ export * from "./goal/types";
|
|
|
10
10
|
export * from "./principle/types";
|
|
11
11
|
export * from "./routine/types";
|
|
12
12
|
export * from "./routine-activity/types";
|
|
13
|
+
export * from "./ideal-inspiration-group/types";
|
|
14
|
+
export * from "./ideal-inspiration/types";
|
|
15
|
+
export * from "./ideal-character-group/types";
|
|
16
|
+
export * from "./ideal-character/types";
|
|
17
|
+
export * from "./ideal-goal/types";
|
|
@@ -26,3 +26,8 @@ __exportStar(require("./goal/types"), exports);
|
|
|
26
26
|
__exportStar(require("./principle/types"), exports);
|
|
27
27
|
__exportStar(require("./routine/types"), exports);
|
|
28
28
|
__exportStar(require("./routine-activity/types"), exports);
|
|
29
|
+
__exportStar(require("./ideal-inspiration-group/types"), exports);
|
|
30
|
+
__exportStar(require("./ideal-inspiration/types"), exports);
|
|
31
|
+
__exportStar(require("./ideal-character-group/types"), exports);
|
|
32
|
+
__exportStar(require("./ideal-character/types"), exports);
|
|
33
|
+
__exportStar(require("./ideal-goal/types"), exports);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export type StudentsLifeStudentsMeditateSong = {
|
|
2
2
|
id: string;
|
|
3
3
|
userId: string;
|
|
4
|
+
groupId: string | null;
|
|
4
5
|
title: string;
|
|
5
6
|
notes: string | null;
|
|
6
7
|
lyrics: string;
|
|
@@ -10,11 +11,13 @@ export type StudentsLifeStudentsMeditateSong = {
|
|
|
10
11
|
};
|
|
11
12
|
export type StudentsLifeStudentsMeditateSongCreateInput = {
|
|
12
13
|
title: string;
|
|
14
|
+
groupId?: string | null;
|
|
13
15
|
notes?: string | null;
|
|
14
16
|
lyrics?: string;
|
|
15
17
|
};
|
|
16
18
|
export type StudentsLifeStudentsMeditateSongUpdateInput = {
|
|
17
19
|
title?: string;
|
|
20
|
+
groupId?: string | null;
|
|
18
21
|
notes?: string | null;
|
|
19
22
|
lyrics?: string;
|
|
20
23
|
};
|