@uniteverses/shared 1.0.159 → 1.0.160
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.
|
@@ -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
|
};
|
|
@@ -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
|
+
};
|