@uniteverses/shared 1.0.154 → 1.0.156
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/condition/types.d.ts +19 -0
- package/dist/domains/students/life/students/live/condition/types.js +2 -0
- package/dist/domains/students/life/students/live/condition-person/types.d.ts +15 -0
- package/dist/domains/students/life/students/live/condition-person/types.js +2 -0
- package/dist/domains/students/life/students/live/diary/types.d.ts +20 -0
- package/dist/domains/students/life/students/live/diary/types.js +2 -0
- package/dist/domains/students/life/students/live/diary-entry/types.d.ts +5 -0
- package/dist/domains/students/life/students/live/diary-era/types.d.ts +19 -0
- package/dist/domains/students/life/students/live/diary-era/types.js +2 -0
- package/dist/domains/students/life/students/live/diary-era-song-cover/types.d.ts +15 -0
- package/dist/domains/students/life/students/live/diary-era-song-cover/types.js +2 -0
- package/dist/domains/students/life/students/live/diary-era-story/types.d.ts +15 -0
- package/dist/domains/students/life/students/live/diary-era-story/types.js +2 -0
- package/dist/domains/students/life/students/live/diary-group/types.d.ts +25 -0
- package/dist/domains/students/life/students/live/diary-group/types.js +2 -0
- package/dist/domains/students/life/students/live/diary-group-person/types.d.ts +15 -0
- package/dist/domains/students/life/students/live/diary-group-person/types.js +2 -0
- package/dist/domains/students/life/students/live/diary-period/types.d.ts +25 -0
- package/dist/domains/students/life/students/live/diary-period/types.js +2 -0
- package/dist/domains/students/life/students/live/index.d.ts +13 -0
- package/dist/domains/students/life/students/live/index.js +13 -0
- package/dist/domains/students/life/students/live/organization/types.d.ts +15 -0
- package/dist/domains/students/life/students/live/organization/types.js +2 -0
- package/dist/domains/students/life/students/live/person/types.d.ts +7 -0
- package/dist/domains/students/life/students/live/person-group/types.d.ts +25 -0
- package/dist/domains/students/life/students/live/person-group/types.js +2 -0
- package/dist/domains/students/life/students/live/person-group-membership/types.d.ts +15 -0
- package/dist/domains/students/life/students/live/person-group-membership/types.js +2 -0
- package/dist/domains/students/life/students/live/story/types.d.ts +16 -0
- package/dist/domains/students/life/students/live/story/types.js +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export type StudentsLifeStudentsLiveCondition = {
|
|
2
|
+
id: string;
|
|
3
|
+
userId: string;
|
|
4
|
+
title: string;
|
|
5
|
+
description: string | null;
|
|
6
|
+
position: number;
|
|
7
|
+
createdAt: string;
|
|
8
|
+
};
|
|
9
|
+
export type StudentsLifeStudentsLiveConditionCreateInput = {
|
|
10
|
+
title: string;
|
|
11
|
+
description?: string | null;
|
|
12
|
+
};
|
|
13
|
+
export type StudentsLifeStudentsLiveConditionUpdateInput = {
|
|
14
|
+
title: string;
|
|
15
|
+
description?: string | null;
|
|
16
|
+
};
|
|
17
|
+
export type StudentsLifeStudentsLiveConditionReorderInput = {
|
|
18
|
+
ids: string[];
|
|
19
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { StudentsLifeStudentsLiveCondition } from "../condition/types";
|
|
2
|
+
import type { StudentsLifeStudentsLivePerson } from "../person/types";
|
|
3
|
+
export type StudentsLifeStudentsLiveConditionPerson = {
|
|
4
|
+
id: string;
|
|
5
|
+
userId: string;
|
|
6
|
+
conditionId: string;
|
|
7
|
+
personId: string;
|
|
8
|
+
createdAt: string;
|
|
9
|
+
condition: StudentsLifeStudentsLiveCondition;
|
|
10
|
+
person: StudentsLifeStudentsLivePerson;
|
|
11
|
+
};
|
|
12
|
+
export type StudentsLifeStudentsLiveConditionPersonCreateInput = {
|
|
13
|
+
conditionId: string;
|
|
14
|
+
personId: string;
|
|
15
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export type StudentsLifeStudentsLiveDiary = {
|
|
2
|
+
id: string;
|
|
3
|
+
userId: string;
|
|
4
|
+
diaryGroupId: string;
|
|
5
|
+
name: string;
|
|
6
|
+
description: string | null;
|
|
7
|
+
createdAt: string;
|
|
8
|
+
};
|
|
9
|
+
export type StudentsLifeStudentsLiveDiaryCreateInput = {
|
|
10
|
+
diaryGroupId: string;
|
|
11
|
+
name: string;
|
|
12
|
+
description?: string | null;
|
|
13
|
+
};
|
|
14
|
+
export type StudentsLifeStudentsLiveDiaryUpdateInput = {
|
|
15
|
+
name: string;
|
|
16
|
+
description?: string | null;
|
|
17
|
+
};
|
|
18
|
+
export type StudentsLifeStudentsLiveDiarySetDiaryGroupInput = {
|
|
19
|
+
diaryGroupId: string;
|
|
20
|
+
};
|
|
@@ -5,6 +5,7 @@ export type StudentsLifeStudentsLiveDiaryEntry = {
|
|
|
5
5
|
past: string | null;
|
|
6
6
|
content: string;
|
|
7
7
|
future: string | null;
|
|
8
|
+
diaryId: string | null;
|
|
8
9
|
createdAt: string;
|
|
9
10
|
};
|
|
10
11
|
export type StudentsLifeStudentsLiveDiaryEntryCreateInput = {
|
|
@@ -12,6 +13,7 @@ export type StudentsLifeStudentsLiveDiaryEntryCreateInput = {
|
|
|
12
13
|
past?: string | null;
|
|
13
14
|
content: string;
|
|
14
15
|
future?: string | null;
|
|
16
|
+
diaryId?: string | null;
|
|
15
17
|
};
|
|
16
18
|
export type StudentsLifeStudentsLiveDiaryEntryUpdateInput = {
|
|
17
19
|
date: string;
|
|
@@ -19,3 +21,6 @@ export type StudentsLifeStudentsLiveDiaryEntryUpdateInput = {
|
|
|
19
21
|
content: string;
|
|
20
22
|
future?: string | null;
|
|
21
23
|
};
|
|
24
|
+
export type StudentsLifeStudentsLiveDiaryEntrySetDiaryInput = {
|
|
25
|
+
diaryId: string | null;
|
|
26
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export type StudentsLifeStudentsLiveDiaryEra = {
|
|
2
|
+
id: string;
|
|
3
|
+
userId: string;
|
|
4
|
+
name: string;
|
|
5
|
+
description: string | null;
|
|
6
|
+
position: number;
|
|
7
|
+
createdAt: string;
|
|
8
|
+
};
|
|
9
|
+
export type StudentsLifeStudentsLiveDiaryEraCreateInput = {
|
|
10
|
+
name: string;
|
|
11
|
+
description?: string | null;
|
|
12
|
+
};
|
|
13
|
+
export type StudentsLifeStudentsLiveDiaryEraUpdateInput = {
|
|
14
|
+
name: string;
|
|
15
|
+
description?: string | null;
|
|
16
|
+
};
|
|
17
|
+
export type StudentsLifeStudentsLiveDiaryEraReorderInput = {
|
|
18
|
+
ids: string[];
|
|
19
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { StudentsLifeStudentsMeditateSongCover } from "../../meditate";
|
|
2
|
+
import type { StudentsLifeStudentsLiveDiaryEra } from "../diary-era/types";
|
|
3
|
+
export type StudentsLifeStudentsLiveDiaryEraSongCover = {
|
|
4
|
+
id: string;
|
|
5
|
+
userId: string;
|
|
6
|
+
diaryEraId: string;
|
|
7
|
+
songCoverId: string;
|
|
8
|
+
createdAt: string;
|
|
9
|
+
era: StudentsLifeStudentsLiveDiaryEra;
|
|
10
|
+
cover: StudentsLifeStudentsMeditateSongCover;
|
|
11
|
+
};
|
|
12
|
+
export type StudentsLifeStudentsLiveDiaryEraSongCoverCreateInput = {
|
|
13
|
+
diaryEraId: string;
|
|
14
|
+
songCoverId: string;
|
|
15
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { StudentsLifeStudentsLiveDiaryEra } from "../diary-era/types";
|
|
2
|
+
import type { StudentsLifeStudentsLiveStory } from "../story/types";
|
|
3
|
+
export type StudentsLifeStudentsLiveDiaryEraStory = {
|
|
4
|
+
id: string;
|
|
5
|
+
userId: string;
|
|
6
|
+
diaryEraId: string;
|
|
7
|
+
storyId: string;
|
|
8
|
+
createdAt: string;
|
|
9
|
+
era: StudentsLifeStudentsLiveDiaryEra;
|
|
10
|
+
story: StudentsLifeStudentsLiveStory;
|
|
11
|
+
};
|
|
12
|
+
export type StudentsLifeStudentsLiveDiaryEraStoryCreateInput = {
|
|
13
|
+
diaryEraId: string;
|
|
14
|
+
storyId: string;
|
|
15
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export type StudentsLifeStudentsLiveDiaryGroup = {
|
|
2
|
+
id: string;
|
|
3
|
+
userId: string;
|
|
4
|
+
diaryPeriodId: string;
|
|
5
|
+
organizationId: string;
|
|
6
|
+
name: string;
|
|
7
|
+
description: string | null;
|
|
8
|
+
createdAt: string;
|
|
9
|
+
};
|
|
10
|
+
export type StudentsLifeStudentsLiveDiaryGroupCreateInput = {
|
|
11
|
+
diaryPeriodId: string;
|
|
12
|
+
organizationId: string;
|
|
13
|
+
name: string;
|
|
14
|
+
description?: string | null;
|
|
15
|
+
};
|
|
16
|
+
export type StudentsLifeStudentsLiveDiaryGroupUpdateInput = {
|
|
17
|
+
name: string;
|
|
18
|
+
description?: string | null;
|
|
19
|
+
};
|
|
20
|
+
export type StudentsLifeStudentsLiveDiaryGroupSetPeriodInput = {
|
|
21
|
+
diaryPeriodId: string;
|
|
22
|
+
};
|
|
23
|
+
export type StudentsLifeStudentsLiveDiaryGroupSetOrganizationInput = {
|
|
24
|
+
organizationId: string;
|
|
25
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { StudentsLifeStudentsLiveDiaryGroup } from "../diary-group/types";
|
|
2
|
+
import type { StudentsLifeStudentsLivePerson } from "../person/types";
|
|
3
|
+
export type StudentsLifeStudentsLiveDiaryGroupPerson = {
|
|
4
|
+
id: string;
|
|
5
|
+
userId: string;
|
|
6
|
+
diaryGroupId: string;
|
|
7
|
+
personId: string;
|
|
8
|
+
createdAt: string;
|
|
9
|
+
group: StudentsLifeStudentsLiveDiaryGroup;
|
|
10
|
+
person: StudentsLifeStudentsLivePerson;
|
|
11
|
+
};
|
|
12
|
+
export type StudentsLifeStudentsLiveDiaryGroupPersonCreateInput = {
|
|
13
|
+
diaryGroupId: string;
|
|
14
|
+
personId: string;
|
|
15
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export type StudentsLifeStudentsLiveDiaryPeriod = {
|
|
2
|
+
id: string;
|
|
3
|
+
userId: string;
|
|
4
|
+
diaryEraId: string;
|
|
5
|
+
name: string;
|
|
6
|
+
description: string | null;
|
|
7
|
+
position: number;
|
|
8
|
+
createdAt: string;
|
|
9
|
+
};
|
|
10
|
+
export type StudentsLifeStudentsLiveDiaryPeriodCreateInput = {
|
|
11
|
+
diaryEraId: string;
|
|
12
|
+
name: string;
|
|
13
|
+
description?: string | null;
|
|
14
|
+
};
|
|
15
|
+
export type StudentsLifeStudentsLiveDiaryPeriodUpdateInput = {
|
|
16
|
+
name: string;
|
|
17
|
+
description?: string | null;
|
|
18
|
+
};
|
|
19
|
+
export type StudentsLifeStudentsLiveDiaryPeriodSetEraInput = {
|
|
20
|
+
diaryEraId: string;
|
|
21
|
+
};
|
|
22
|
+
export type StudentsLifeStudentsLiveDiaryPeriodReorderInput = {
|
|
23
|
+
diaryEraId: string;
|
|
24
|
+
ids: string[];
|
|
25
|
+
};
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
export * from "./condition/types";
|
|
2
|
+
export * from "./condition-person/types";
|
|
1
3
|
export * from "./reminder/types";
|
|
2
4
|
export * from "./ideal/types";
|
|
3
5
|
export * from "./ideal-influence/types";
|
|
@@ -5,6 +7,14 @@ export * from "./person/types";
|
|
|
5
7
|
export * from "./person-tag/types";
|
|
6
8
|
export * from "./person-tag-assignment/types";
|
|
7
9
|
export * from "./person-goal/types";
|
|
10
|
+
export * from "./person-group/types";
|
|
11
|
+
export * from "./person-group-membership/types";
|
|
12
|
+
export * from "./organization/types";
|
|
13
|
+
export * from "./diary-era/types";
|
|
14
|
+
export * from "./diary-period/types";
|
|
15
|
+
export * from "./diary-group/types";
|
|
16
|
+
export * from "./diary-group-person/types";
|
|
17
|
+
export * from "./diary/types";
|
|
8
18
|
export * from "./diary-entry/types";
|
|
9
19
|
export * from "./goal/types";
|
|
10
20
|
export * from "./principle/types";
|
|
@@ -15,3 +25,6 @@ export * from "./ideal-inspiration/types";
|
|
|
15
25
|
export * from "./ideal-character-group/types";
|
|
16
26
|
export * from "./ideal-character/types";
|
|
17
27
|
export * from "./ideal-goal/types";
|
|
28
|
+
export * from "./story/types";
|
|
29
|
+
export * from "./diary-era-story/types";
|
|
30
|
+
export * from "./diary-era-song-cover/types";
|
|
@@ -14,6 +14,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./condition/types"), exports);
|
|
18
|
+
__exportStar(require("./condition-person/types"), exports);
|
|
17
19
|
__exportStar(require("./reminder/types"), exports);
|
|
18
20
|
__exportStar(require("./ideal/types"), exports);
|
|
19
21
|
__exportStar(require("./ideal-influence/types"), exports);
|
|
@@ -21,6 +23,14 @@ __exportStar(require("./person/types"), exports);
|
|
|
21
23
|
__exportStar(require("./person-tag/types"), exports);
|
|
22
24
|
__exportStar(require("./person-tag-assignment/types"), exports);
|
|
23
25
|
__exportStar(require("./person-goal/types"), exports);
|
|
26
|
+
__exportStar(require("./person-group/types"), exports);
|
|
27
|
+
__exportStar(require("./person-group-membership/types"), exports);
|
|
28
|
+
__exportStar(require("./organization/types"), exports);
|
|
29
|
+
__exportStar(require("./diary-era/types"), exports);
|
|
30
|
+
__exportStar(require("./diary-period/types"), exports);
|
|
31
|
+
__exportStar(require("./diary-group/types"), exports);
|
|
32
|
+
__exportStar(require("./diary-group-person/types"), exports);
|
|
33
|
+
__exportStar(require("./diary/types"), exports);
|
|
24
34
|
__exportStar(require("./diary-entry/types"), exports);
|
|
25
35
|
__exportStar(require("./goal/types"), exports);
|
|
26
36
|
__exportStar(require("./principle/types"), exports);
|
|
@@ -31,3 +41,6 @@ __exportStar(require("./ideal-inspiration/types"), exports);
|
|
|
31
41
|
__exportStar(require("./ideal-character-group/types"), exports);
|
|
32
42
|
__exportStar(require("./ideal-character/types"), exports);
|
|
33
43
|
__exportStar(require("./ideal-goal/types"), exports);
|
|
44
|
+
__exportStar(require("./story/types"), exports);
|
|
45
|
+
__exportStar(require("./diary-era-story/types"), exports);
|
|
46
|
+
__exportStar(require("./diary-era-song-cover/types"), exports);
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export type StudentsLifeStudentsLiveOrganization = {
|
|
2
|
+
id: string;
|
|
3
|
+
userId: string;
|
|
4
|
+
name: string;
|
|
5
|
+
description: string | null;
|
|
6
|
+
createdAt: string;
|
|
7
|
+
};
|
|
8
|
+
export type StudentsLifeStudentsLiveOrganizationCreateInput = {
|
|
9
|
+
name: string;
|
|
10
|
+
description?: string | null;
|
|
11
|
+
};
|
|
12
|
+
export type StudentsLifeStudentsLiveOrganizationUpdateInput = {
|
|
13
|
+
name: string;
|
|
14
|
+
description?: string | null;
|
|
15
|
+
};
|
|
@@ -4,15 +4,22 @@ export type StudentsLifeStudentsLivePerson = {
|
|
|
4
4
|
firstName: string;
|
|
5
5
|
lastName: string;
|
|
6
6
|
description: string | null;
|
|
7
|
+
returned: boolean;
|
|
7
8
|
createdAt: string;
|
|
8
9
|
};
|
|
9
10
|
export type StudentsLifeStudentsLivePersonCreateInput = {
|
|
10
11
|
firstName: string;
|
|
11
12
|
lastName: string;
|
|
12
13
|
description?: string | null;
|
|
14
|
+
personGroupId?: string | null;
|
|
15
|
+
conditionId?: string | null;
|
|
16
|
+
diaryGroupId?: string | null;
|
|
13
17
|
};
|
|
14
18
|
export type StudentsLifeStudentsLivePersonUpdateInput = {
|
|
15
19
|
firstName: string;
|
|
16
20
|
lastName: string;
|
|
17
21
|
description?: string | null;
|
|
18
22
|
};
|
|
23
|
+
export type StudentsLifeStudentsLivePersonSetReturnedInput = {
|
|
24
|
+
returned: boolean;
|
|
25
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export type StudentsLifeStudentsLivePersonGroup = {
|
|
2
|
+
id: string;
|
|
3
|
+
userId: string;
|
|
4
|
+
name: string;
|
|
5
|
+
description: string | null;
|
|
6
|
+
parentId: string | null;
|
|
7
|
+
position: number;
|
|
8
|
+
createdAt: string;
|
|
9
|
+
};
|
|
10
|
+
export type StudentsLifeStudentsLivePersonGroupCreateInput = {
|
|
11
|
+
name: string;
|
|
12
|
+
description?: string | null;
|
|
13
|
+
parentId?: string | null;
|
|
14
|
+
};
|
|
15
|
+
export type StudentsLifeStudentsLivePersonGroupUpdateInput = {
|
|
16
|
+
name: string;
|
|
17
|
+
description?: string | null;
|
|
18
|
+
};
|
|
19
|
+
export type StudentsLifeStudentsLivePersonGroupSetParentInput = {
|
|
20
|
+
parentId: string | null;
|
|
21
|
+
};
|
|
22
|
+
export type StudentsLifeStudentsLivePersonGroupReorderInput = {
|
|
23
|
+
parentId: string | null;
|
|
24
|
+
ids: string[];
|
|
25
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { StudentsLifeStudentsLivePerson } from "../person/types";
|
|
2
|
+
import type { StudentsLifeStudentsLivePersonGroup } from "../person-group/types";
|
|
3
|
+
export type StudentsLifeStudentsLivePersonGroupMembership = {
|
|
4
|
+
id: string;
|
|
5
|
+
userId: string;
|
|
6
|
+
personId: string;
|
|
7
|
+
personGroupId: string;
|
|
8
|
+
createdAt: string;
|
|
9
|
+
person: StudentsLifeStudentsLivePerson;
|
|
10
|
+
group: StudentsLifeStudentsLivePersonGroup;
|
|
11
|
+
};
|
|
12
|
+
export type StudentsLifeStudentsLivePersonGroupMembershipCreateInput = {
|
|
13
|
+
personId: string;
|
|
14
|
+
personGroupId: string;
|
|
15
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export type StudentsLifeStudentsLiveStory = {
|
|
2
|
+
id: string;
|
|
3
|
+
userId: string;
|
|
4
|
+
title: string;
|
|
5
|
+
description: string | null;
|
|
6
|
+
createdAt: string;
|
|
7
|
+
};
|
|
8
|
+
export type StudentsLifeStudentsLiveStoryCreateInput = {
|
|
9
|
+
title: string;
|
|
10
|
+
description?: string | null;
|
|
11
|
+
diaryEraId?: string | null;
|
|
12
|
+
};
|
|
13
|
+
export type StudentsLifeStudentsLiveStoryUpdateInput = {
|
|
14
|
+
title: string;
|
|
15
|
+
description?: string | null;
|
|
16
|
+
};
|