@uniteverses/shared 1.0.159 → 1.0.161
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-organization/types.d.ts +15 -0
- package/dist/domains/students/life/students/live/condition-organization/types.js +2 -0
- package/dist/domains/students/life/students/live/diary-era/types.d.ts +4 -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/dist/domains/students/life/students/live/organization/types.d.ts +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { StudentsLifeStudentsLiveCondition } from "../condition/types";
|
|
2
|
+
import type { StudentsLifeStudentsLiveOrganization } from "../organization/types";
|
|
3
|
+
export type StudentsLifeStudentsLiveConditionOrganization = {
|
|
4
|
+
id: string;
|
|
5
|
+
userId: string;
|
|
6
|
+
conditionId: string;
|
|
7
|
+
organizationId: string;
|
|
8
|
+
createdAt: string;
|
|
9
|
+
condition: StudentsLifeStudentsLiveCondition;
|
|
10
|
+
organization: StudentsLifeStudentsLiveOrganization;
|
|
11
|
+
};
|
|
12
|
+
export type StudentsLifeStudentsLiveConditionOrganizationCreateInput = {
|
|
13
|
+
conditionId: string;
|
|
14
|
+
organizationId: string;
|
|
15
|
+
};
|
|
@@ -4,6 +4,7 @@ export type StudentsLifeStudentsLiveDiaryEra = {
|
|
|
4
4
|
name: string;
|
|
5
5
|
description: string | null;
|
|
6
6
|
position: number;
|
|
7
|
+
returned: boolean;
|
|
7
8
|
createdAt: string;
|
|
8
9
|
};
|
|
9
10
|
export type StudentsLifeStudentsLiveDiaryEraCreateInput = {
|
|
@@ -14,6 +15,9 @@ export type StudentsLifeStudentsLiveDiaryEraUpdateInput = {
|
|
|
14
15
|
name: string;
|
|
15
16
|
description?: string | null;
|
|
16
17
|
};
|
|
18
|
+
export type StudentsLifeStudentsLiveDiaryEraSetReturnedInput = {
|
|
19
|
+
returned: boolean;
|
|
20
|
+
};
|
|
17
21
|
export type StudentsLifeStudentsLiveDiaryEraReorderInput = {
|
|
18
22
|
ids: string[];
|
|
19
23
|
};
|
|
@@ -2,6 +2,7 @@ export * from "./condition/types";
|
|
|
2
2
|
export * from "./condition-group/types";
|
|
3
3
|
export * from "./condition-person/types";
|
|
4
4
|
export * from "./condition-ideal-character/types";
|
|
5
|
+
export * from "./condition-organization/types";
|
|
5
6
|
export * from "./reminder/types";
|
|
6
7
|
export * from "./ideal/types";
|
|
7
8
|
export * from "./ideal-influence/types";
|
|
@@ -18,6 +18,7 @@ __exportStar(require("./condition/types"), exports);
|
|
|
18
18
|
__exportStar(require("./condition-group/types"), exports);
|
|
19
19
|
__exportStar(require("./condition-person/types"), exports);
|
|
20
20
|
__exportStar(require("./condition-ideal-character/types"), exports);
|
|
21
|
+
__exportStar(require("./condition-organization/types"), exports);
|
|
21
22
|
__exportStar(require("./reminder/types"), exports);
|
|
22
23
|
__exportStar(require("./ideal/types"), exports);
|
|
23
24
|
__exportStar(require("./ideal-influence/types"), exports);
|
|
@@ -3,6 +3,7 @@ export type StudentsLifeStudentsLiveOrganization = {
|
|
|
3
3
|
userId: string;
|
|
4
4
|
name: string;
|
|
5
5
|
description: string | null;
|
|
6
|
+
returned: boolean;
|
|
6
7
|
createdAt: string;
|
|
7
8
|
};
|
|
8
9
|
export type StudentsLifeStudentsLiveOrganizationCreateInput = {
|
|
@@ -13,3 +14,6 @@ export type StudentsLifeStudentsLiveOrganizationUpdateInput = {
|
|
|
13
14
|
name: string;
|
|
14
15
|
description?: string | null;
|
|
15
16
|
};
|
|
17
|
+
export type StudentsLifeStudentsLiveOrganizationSetReturnedInput = {
|
|
18
|
+
returned: boolean;
|
|
19
|
+
};
|