@uniteverses/shared 1.0.161 → 1.0.163
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/diary-era-diary-era-return/types.d.ts +15 -0
- package/dist/domains/students/life/students/live/diary-era-diary-era-return/types.js +2 -0
- package/dist/domains/students/life/students/live/diary-era-return/types.d.ts +19 -0
- package/dist/domains/students/life/students/live/diary-era-return/types.js +2 -0
- package/dist/domains/students/life/students/live/ideal-character/types.d.ts +4 -0
- package/dist/domains/students/life/students/live/ideal-character-goal/types.d.ts +23 -0
- package/dist/domains/students/life/students/live/ideal-character-goal/types.js +2 -0
- package/dist/domains/students/life/students/live/ideal-inspiration-ideal-character/types.d.ts +15 -0
- package/dist/domains/students/life/students/live/ideal-inspiration-ideal-character/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/live/person-ideal-character/types.d.ts +15 -0
- package/dist/domains/students/life/students/live/person-ideal-character/types.js +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { StudentsLifeStudentsLiveDiaryEraReturn } from "../diary-era-return/types";
|
|
2
|
+
import type { StudentsLifeStudentsLiveDiaryEra } from "../diary-era/types";
|
|
3
|
+
export type StudentsLifeStudentsLiveDiaryEraDiaryEraReturn = {
|
|
4
|
+
id: string;
|
|
5
|
+
userId: string;
|
|
6
|
+
diaryEraId: string;
|
|
7
|
+
diaryEraReturnId: string;
|
|
8
|
+
createdAt: string;
|
|
9
|
+
era: StudentsLifeStudentsLiveDiaryEra;
|
|
10
|
+
diaryEraReturn: StudentsLifeStudentsLiveDiaryEraReturn;
|
|
11
|
+
};
|
|
12
|
+
export type StudentsLifeStudentsLiveDiaryEraDiaryEraReturnCreateInput = {
|
|
13
|
+
diaryEraId: string;
|
|
14
|
+
diaryEraReturnId: string;
|
|
15
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export type StudentsLifeStudentsLiveDiaryEraReturn = {
|
|
2
|
+
id: string;
|
|
3
|
+
userId: string;
|
|
4
|
+
isGood: boolean;
|
|
5
|
+
content: string;
|
|
6
|
+
return: string;
|
|
7
|
+
createdAt: string;
|
|
8
|
+
};
|
|
9
|
+
export type StudentsLifeStudentsLiveDiaryEraReturnCreateInput = {
|
|
10
|
+
isGood: boolean;
|
|
11
|
+
content: string;
|
|
12
|
+
return: string;
|
|
13
|
+
diaryEraId?: string | null;
|
|
14
|
+
};
|
|
15
|
+
export type StudentsLifeStudentsLiveDiaryEraReturnUpdateInput = {
|
|
16
|
+
isGood: boolean;
|
|
17
|
+
content: string;
|
|
18
|
+
return: string;
|
|
19
|
+
};
|
|
@@ -3,6 +3,7 @@ export type StudentsLifeStudentsLiveIdealCharacter = {
|
|
|
3
3
|
userId: string;
|
|
4
4
|
idealCharacterGroupId: string;
|
|
5
5
|
content: string;
|
|
6
|
+
returned: boolean;
|
|
6
7
|
createdAt: string;
|
|
7
8
|
};
|
|
8
9
|
export type StudentsLifeStudentsLiveIdealCharacterCreateInput = {
|
|
@@ -12,3 +13,6 @@ export type StudentsLifeStudentsLiveIdealCharacterCreateInput = {
|
|
|
12
13
|
export type StudentsLifeStudentsLiveIdealCharacterUpdateInput = {
|
|
13
14
|
content: string;
|
|
14
15
|
};
|
|
16
|
+
export type StudentsLifeStudentsLiveIdealCharacterSetReturnedInput = {
|
|
17
|
+
returned: boolean;
|
|
18
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export type StudentsLifeStudentsLiveIdealCharacterGoal = {
|
|
2
|
+
id: string;
|
|
3
|
+
userId: string;
|
|
4
|
+
idealCharacterId: string;
|
|
5
|
+
content: string;
|
|
6
|
+
position: number;
|
|
7
|
+
done: boolean;
|
|
8
|
+
createdAt: string;
|
|
9
|
+
};
|
|
10
|
+
export type StudentsLifeStudentsLiveIdealCharacterGoalCreateInput = {
|
|
11
|
+
idealCharacterId: string;
|
|
12
|
+
content: string;
|
|
13
|
+
};
|
|
14
|
+
export type StudentsLifeStudentsLiveIdealCharacterGoalUpdateInput = {
|
|
15
|
+
content: string;
|
|
16
|
+
};
|
|
17
|
+
export type StudentsLifeStudentsLiveIdealCharacterGoalReorderInput = {
|
|
18
|
+
idealCharacterId: string;
|
|
19
|
+
ids: string[];
|
|
20
|
+
};
|
|
21
|
+
export type StudentsLifeStudentsLiveIdealCharacterGoalSetDoneInput = {
|
|
22
|
+
done: boolean;
|
|
23
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { StudentsLifeStudentsLiveIdealCharacter } from "../ideal-character/types";
|
|
2
|
+
import type { StudentsLifeStudentsLiveIdealInspiration } from "../ideal-inspiration/types";
|
|
3
|
+
export type StudentsLifeStudentsLiveIdealInspirationIdealCharacter = {
|
|
4
|
+
id: string;
|
|
5
|
+
userId: string;
|
|
6
|
+
idealInspirationId: string;
|
|
7
|
+
idealCharacterId: string;
|
|
8
|
+
createdAt: string;
|
|
9
|
+
idealInspiration: StudentsLifeStudentsLiveIdealInspiration;
|
|
10
|
+
idealCharacter: StudentsLifeStudentsLiveIdealCharacter;
|
|
11
|
+
};
|
|
12
|
+
export type StudentsLifeStudentsLiveIdealInspirationIdealCharacterCreateInput = {
|
|
13
|
+
idealInspirationId: string;
|
|
14
|
+
idealCharacterId: string;
|
|
15
|
+
};
|
|
@@ -15,6 +15,8 @@ export * from "./person-group/types";
|
|
|
15
15
|
export * from "./person-group-membership/types";
|
|
16
16
|
export * from "./organization/types";
|
|
17
17
|
export * from "./diary-era/types";
|
|
18
|
+
export * from "./diary-era-return/types";
|
|
19
|
+
export * from "./diary-era-diary-era-return/types";
|
|
18
20
|
export * from "./diary-period/types";
|
|
19
21
|
export * from "./diary-group/types";
|
|
20
22
|
export * from "./diary-group-person/types";
|
|
@@ -26,8 +28,11 @@ export * from "./routine/types";
|
|
|
26
28
|
export * from "./routine-activity/types";
|
|
27
29
|
export * from "./ideal-inspiration-group/types";
|
|
28
30
|
export * from "./ideal-inspiration/types";
|
|
31
|
+
export * from "./ideal-inspiration-ideal-character/types";
|
|
29
32
|
export * from "./ideal-character-group/types";
|
|
33
|
+
export * from "./ideal-character-goal/types";
|
|
30
34
|
export * from "./ideal-character/types";
|
|
35
|
+
export * from "./person-ideal-character/types";
|
|
31
36
|
export * from "./ideal-goal/types";
|
|
32
37
|
export * from "./story/types";
|
|
33
38
|
export * from "./diary-era-story/types";
|
|
@@ -31,6 +31,8 @@ __exportStar(require("./person-group/types"), exports);
|
|
|
31
31
|
__exportStar(require("./person-group-membership/types"), exports);
|
|
32
32
|
__exportStar(require("./organization/types"), exports);
|
|
33
33
|
__exportStar(require("./diary-era/types"), exports);
|
|
34
|
+
__exportStar(require("./diary-era-return/types"), exports);
|
|
35
|
+
__exportStar(require("./diary-era-diary-era-return/types"), exports);
|
|
34
36
|
__exportStar(require("./diary-period/types"), exports);
|
|
35
37
|
__exportStar(require("./diary-group/types"), exports);
|
|
36
38
|
__exportStar(require("./diary-group-person/types"), exports);
|
|
@@ -42,8 +44,11 @@ __exportStar(require("./routine/types"), exports);
|
|
|
42
44
|
__exportStar(require("./routine-activity/types"), exports);
|
|
43
45
|
__exportStar(require("./ideal-inspiration-group/types"), exports);
|
|
44
46
|
__exportStar(require("./ideal-inspiration/types"), exports);
|
|
47
|
+
__exportStar(require("./ideal-inspiration-ideal-character/types"), exports);
|
|
45
48
|
__exportStar(require("./ideal-character-group/types"), exports);
|
|
49
|
+
__exportStar(require("./ideal-character-goal/types"), exports);
|
|
46
50
|
__exportStar(require("./ideal-character/types"), exports);
|
|
51
|
+
__exportStar(require("./person-ideal-character/types"), exports);
|
|
47
52
|
__exportStar(require("./ideal-goal/types"), exports);
|
|
48
53
|
__exportStar(require("./story/types"), exports);
|
|
49
54
|
__exportStar(require("./diary-era-story/types"), exports);
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { StudentsLifeStudentsLiveIdealCharacter } from "../ideal-character/types";
|
|
2
|
+
import type { StudentsLifeStudentsLivePerson } from "../person/types";
|
|
3
|
+
export type StudentsLifeStudentsLivePersonIdealCharacter = {
|
|
4
|
+
id: string;
|
|
5
|
+
userId: string;
|
|
6
|
+
personId: string;
|
|
7
|
+
idealCharacterId: string;
|
|
8
|
+
createdAt: string;
|
|
9
|
+
person: StudentsLifeStudentsLivePerson;
|
|
10
|
+
idealCharacter: StudentsLifeStudentsLiveIdealCharacter;
|
|
11
|
+
};
|
|
12
|
+
export type StudentsLifeStudentsLivePersonIdealCharacterCreateInput = {
|
|
13
|
+
personId: string;
|
|
14
|
+
idealCharacterId: string;
|
|
15
|
+
};
|