@uniteverses/shared 1.0.155 → 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-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-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/index.d.ts +2 -0
- package/dist/domains/students/life/students/live/index.js +2 -0
- package/dist/domains/students/life/students/live/person/types.d.ts +6 -0
- package/package.json +1 -1
|
@@ -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,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
|
+
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from "./condition/types";
|
|
2
|
+
export * from "./condition-person/types";
|
|
2
3
|
export * from "./reminder/types";
|
|
3
4
|
export * from "./ideal/types";
|
|
4
5
|
export * from "./ideal-influence/types";
|
|
@@ -12,6 +13,7 @@ export * from "./organization/types";
|
|
|
12
13
|
export * from "./diary-era/types";
|
|
13
14
|
export * from "./diary-period/types";
|
|
14
15
|
export * from "./diary-group/types";
|
|
16
|
+
export * from "./diary-group-person/types";
|
|
15
17
|
export * from "./diary/types";
|
|
16
18
|
export * from "./diary-entry/types";
|
|
17
19
|
export * from "./goal/types";
|
|
@@ -15,6 +15,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./condition/types"), exports);
|
|
18
|
+
__exportStar(require("./condition-person/types"), exports);
|
|
18
19
|
__exportStar(require("./reminder/types"), exports);
|
|
19
20
|
__exportStar(require("./ideal/types"), exports);
|
|
20
21
|
__exportStar(require("./ideal-influence/types"), exports);
|
|
@@ -28,6 +29,7 @@ __exportStar(require("./organization/types"), exports);
|
|
|
28
29
|
__exportStar(require("./diary-era/types"), exports);
|
|
29
30
|
__exportStar(require("./diary-period/types"), exports);
|
|
30
31
|
__exportStar(require("./diary-group/types"), exports);
|
|
32
|
+
__exportStar(require("./diary-group-person/types"), exports);
|
|
31
33
|
__exportStar(require("./diary/types"), exports);
|
|
32
34
|
__exportStar(require("./diary-entry/types"), exports);
|
|
33
35
|
__exportStar(require("./goal/types"), exports);
|
|
@@ -4,6 +4,7 @@ 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 = {
|
|
@@ -11,9 +12,14 @@ export type StudentsLifeStudentsLivePersonCreateInput = {
|
|
|
11
12
|
lastName: string;
|
|
12
13
|
description?: string | null;
|
|
13
14
|
personGroupId?: string | null;
|
|
15
|
+
conditionId?: string | null;
|
|
16
|
+
diaryGroupId?: string | null;
|
|
14
17
|
};
|
|
15
18
|
export type StudentsLifeStudentsLivePersonUpdateInput = {
|
|
16
19
|
firstName: string;
|
|
17
20
|
lastName: string;
|
|
18
21
|
description?: string | null;
|
|
19
22
|
};
|
|
23
|
+
export type StudentsLifeStudentsLivePersonSetReturnedInput = {
|
|
24
|
+
returned: boolean;
|
|
25
|
+
};
|