@uniteverses/shared 1.0.162 → 1.0.163

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.
@@ -0,0 +1,15 @@
1
+ import type { StudentsLifeStudentsLiveDiaryEraReturn } from "../diary-era-return/types";
2
+ import type { StudentsLifeStudentsLiveDiaryEra } from "../diary-era/types";
3
+ export type StudentsLifeStudentsLiveDiaryEraDiaryEraReturn = {
4
+ id: string;
5
+ userId: string;
6
+ diaryEraId: string;
7
+ diaryEraReturnId: string;
8
+ createdAt: string;
9
+ era: StudentsLifeStudentsLiveDiaryEra;
10
+ diaryEraReturn: StudentsLifeStudentsLiveDiaryEraReturn;
11
+ };
12
+ export type StudentsLifeStudentsLiveDiaryEraDiaryEraReturnCreateInput = {
13
+ diaryEraId: string;
14
+ diaryEraReturnId: string;
15
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,19 @@
1
+ export type StudentsLifeStudentsLiveDiaryEraReturn = {
2
+ id: string;
3
+ userId: string;
4
+ isGood: boolean;
5
+ content: string;
6
+ return: string;
7
+ createdAt: string;
8
+ };
9
+ export type StudentsLifeStudentsLiveDiaryEraReturnCreateInput = {
10
+ isGood: boolean;
11
+ content: string;
12
+ return: string;
13
+ diaryEraId?: string | null;
14
+ };
15
+ export type StudentsLifeStudentsLiveDiaryEraReturnUpdateInput = {
16
+ isGood: boolean;
17
+ content: string;
18
+ return: string;
19
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ import type { StudentsLifeStudentsLiveIdealCharacter } from "../ideal-character/types";
2
+ import type { StudentsLifeStudentsLiveIdealInspiration } from "../ideal-inspiration/types";
3
+ export type StudentsLifeStudentsLiveIdealInspirationIdealCharacter = {
4
+ id: string;
5
+ userId: string;
6
+ idealInspirationId: string;
7
+ idealCharacterId: string;
8
+ createdAt: string;
9
+ idealInspiration: StudentsLifeStudentsLiveIdealInspiration;
10
+ idealCharacter: StudentsLifeStudentsLiveIdealCharacter;
11
+ };
12
+ export type StudentsLifeStudentsLiveIdealInspirationIdealCharacterCreateInput = {
13
+ idealInspirationId: string;
14
+ idealCharacterId: string;
15
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -15,6 +15,8 @@ export * from "./person-group/types";
15
15
  export * from "./person-group-membership/types";
16
16
  export * from "./organization/types";
17
17
  export * from "./diary-era/types";
18
+ export * from "./diary-era-return/types";
19
+ export * from "./diary-era-diary-era-return/types";
18
20
  export * from "./diary-period/types";
19
21
  export * from "./diary-group/types";
20
22
  export * from "./diary-group-person/types";
@@ -26,6 +28,7 @@ export * from "./routine/types";
26
28
  export * from "./routine-activity/types";
27
29
  export * from "./ideal-inspiration-group/types";
28
30
  export * from "./ideal-inspiration/types";
31
+ export * from "./ideal-inspiration-ideal-character/types";
29
32
  export * from "./ideal-character-group/types";
30
33
  export * from "./ideal-character-goal/types";
31
34
  export * from "./ideal-character/types";
@@ -31,6 +31,8 @@ __exportStar(require("./person-group/types"), exports);
31
31
  __exportStar(require("./person-group-membership/types"), exports);
32
32
  __exportStar(require("./organization/types"), exports);
33
33
  __exportStar(require("./diary-era/types"), exports);
34
+ __exportStar(require("./diary-era-return/types"), exports);
35
+ __exportStar(require("./diary-era-diary-era-return/types"), exports);
34
36
  __exportStar(require("./diary-period/types"), exports);
35
37
  __exportStar(require("./diary-group/types"), exports);
36
38
  __exportStar(require("./diary-group-person/types"), exports);
@@ -42,6 +44,7 @@ __exportStar(require("./routine/types"), exports);
42
44
  __exportStar(require("./routine-activity/types"), exports);
43
45
  __exportStar(require("./ideal-inspiration-group/types"), exports);
44
46
  __exportStar(require("./ideal-inspiration/types"), exports);
47
+ __exportStar(require("./ideal-inspiration-ideal-character/types"), exports);
45
48
  __exportStar(require("./ideal-character-group/types"), exports);
46
49
  __exportStar(require("./ideal-character-goal/types"), exports);
47
50
  __exportStar(require("./ideal-character/types"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniteverses/shared",
3
- "version": "1.0.162",
3
+ "version": "1.0.163",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [