@uniteverses/shared 1.0.158 → 1.0.159
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 +4 -0
- package/dist/domains/students/life/students/live/condition-group/types.d.ts +15 -0
- package/dist/domains/students/life/students/live/condition-group/types.js +2 -0
- package/dist/domains/students/life/students/live/index.d.ts +1 -0
- package/dist/domains/students/life/students/live/index.js +1 -0
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ export type StudentsLifeStudentsLiveCondition = {
|
|
|
5
5
|
description: string | null;
|
|
6
6
|
position: number;
|
|
7
7
|
diaryEraId: string | null;
|
|
8
|
+
conditionGroupId: string | null;
|
|
8
9
|
createdAt: string;
|
|
9
10
|
};
|
|
10
11
|
export type StudentsLifeStudentsLiveConditionCreateInput = {
|
|
@@ -18,6 +19,9 @@ export type StudentsLifeStudentsLiveConditionUpdateInput = {
|
|
|
18
19
|
export type StudentsLifeStudentsLiveConditionSetDiaryEraInput = {
|
|
19
20
|
diaryEraId: string | null;
|
|
20
21
|
};
|
|
22
|
+
export type StudentsLifeStudentsLiveConditionSetConditionGroupInput = {
|
|
23
|
+
conditionGroupId: string | null;
|
|
24
|
+
};
|
|
21
25
|
export type StudentsLifeStudentsLiveConditionReorderInput = {
|
|
22
26
|
ids: string[];
|
|
23
27
|
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export type StudentsLifeStudentsLiveConditionGroup = {
|
|
2
|
+
id: string;
|
|
3
|
+
userId: string;
|
|
4
|
+
name: string;
|
|
5
|
+
description: string | null;
|
|
6
|
+
createdAt: string;
|
|
7
|
+
};
|
|
8
|
+
export type StudentsLifeStudentsLiveConditionGroupCreateInput = {
|
|
9
|
+
name: string;
|
|
10
|
+
description?: string | null;
|
|
11
|
+
};
|
|
12
|
+
export type StudentsLifeStudentsLiveConditionGroupUpdateInput = {
|
|
13
|
+
name: string;
|
|
14
|
+
description?: string | null;
|
|
15
|
+
};
|
|
@@ -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-group/types"), exports);
|
|
18
19
|
__exportStar(require("./condition-person/types"), exports);
|
|
19
20
|
__exportStar(require("./condition-ideal-character/types"), exports);
|
|
20
21
|
__exportStar(require("./reminder/types"), exports);
|