@uniteverses/shared 1.0.161 → 1.0.162

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.
@@ -3,6 +3,7 @@ export type StudentsLifeStudentsLiveIdealCharacter = {
3
3
  userId: string;
4
4
  idealCharacterGroupId: string;
5
5
  content: string;
6
+ returned: boolean;
6
7
  createdAt: string;
7
8
  };
8
9
  export type StudentsLifeStudentsLiveIdealCharacterCreateInput = {
@@ -12,3 +13,6 @@ export type StudentsLifeStudentsLiveIdealCharacterCreateInput = {
12
13
  export type StudentsLifeStudentsLiveIdealCharacterUpdateInput = {
13
14
  content: string;
14
15
  };
16
+ export type StudentsLifeStudentsLiveIdealCharacterSetReturnedInput = {
17
+ returned: boolean;
18
+ };
@@ -0,0 +1,23 @@
1
+ export type StudentsLifeStudentsLiveIdealCharacterGoal = {
2
+ id: string;
3
+ userId: string;
4
+ idealCharacterId: string;
5
+ content: string;
6
+ position: number;
7
+ done: boolean;
8
+ createdAt: string;
9
+ };
10
+ export type StudentsLifeStudentsLiveIdealCharacterGoalCreateInput = {
11
+ idealCharacterId: string;
12
+ content: string;
13
+ };
14
+ export type StudentsLifeStudentsLiveIdealCharacterGoalUpdateInput = {
15
+ content: string;
16
+ };
17
+ export type StudentsLifeStudentsLiveIdealCharacterGoalReorderInput = {
18
+ idealCharacterId: string;
19
+ ids: string[];
20
+ };
21
+ export type StudentsLifeStudentsLiveIdealCharacterGoalSetDoneInput = {
22
+ done: boolean;
23
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -27,7 +27,9 @@ export * from "./routine-activity/types";
27
27
  export * from "./ideal-inspiration-group/types";
28
28
  export * from "./ideal-inspiration/types";
29
29
  export * from "./ideal-character-group/types";
30
+ export * from "./ideal-character-goal/types";
30
31
  export * from "./ideal-character/types";
32
+ export * from "./person-ideal-character/types";
31
33
  export * from "./ideal-goal/types";
32
34
  export * from "./story/types";
33
35
  export * from "./diary-era-story/types";
@@ -43,7 +43,9 @@ __exportStar(require("./routine-activity/types"), exports);
43
43
  __exportStar(require("./ideal-inspiration-group/types"), exports);
44
44
  __exportStar(require("./ideal-inspiration/types"), exports);
45
45
  __exportStar(require("./ideal-character-group/types"), exports);
46
+ __exportStar(require("./ideal-character-goal/types"), exports);
46
47
  __exportStar(require("./ideal-character/types"), exports);
48
+ __exportStar(require("./person-ideal-character/types"), exports);
47
49
  __exportStar(require("./ideal-goal/types"), exports);
48
50
  __exportStar(require("./story/types"), exports);
49
51
  __exportStar(require("./diary-era-story/types"), exports);
@@ -0,0 +1,15 @@
1
+ import type { StudentsLifeStudentsLiveIdealCharacter } from "../ideal-character/types";
2
+ import type { StudentsLifeStudentsLivePerson } from "../person/types";
3
+ export type StudentsLifeStudentsLivePersonIdealCharacter = {
4
+ id: string;
5
+ userId: string;
6
+ personId: string;
7
+ idealCharacterId: string;
8
+ createdAt: string;
9
+ person: StudentsLifeStudentsLivePerson;
10
+ idealCharacter: StudentsLifeStudentsLiveIdealCharacter;
11
+ };
12
+ export type StudentsLifeStudentsLivePersonIdealCharacterCreateInput = {
13
+ personId: string;
14
+ idealCharacterId: string;
15
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniteverses/shared",
3
- "version": "1.0.161",
3
+ "version": "1.0.162",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [