@uniteverses/shared 1.0.150 → 1.0.153

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,14 @@
1
+ export type StudentsLifeStudentsLiveIdealCharacter = {
2
+ id: string;
3
+ userId: string;
4
+ idealCharacterGroupId: string;
5
+ content: string;
6
+ createdAt: string;
7
+ };
8
+ export type StudentsLifeStudentsLiveIdealCharacterCreateInput = {
9
+ idealCharacterGroupId: string;
10
+ content: string;
11
+ };
12
+ export type StudentsLifeStudentsLiveIdealCharacterUpdateInput = {
13
+ content: string;
14
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ export type StudentsLifeStudentsLiveIdealCharacterGroup = {
2
+ id: string;
3
+ userId: string;
4
+ name: string;
5
+ description: string | null;
6
+ createdAt: string;
7
+ };
8
+ export type StudentsLifeStudentsLiveIdealCharacterGroupCreateInput = {
9
+ name: string;
10
+ description?: string | null;
11
+ };
12
+ export type StudentsLifeStudentsLiveIdealCharacterGroupUpdateInput = {
13
+ name: string;
14
+ description?: string | null;
15
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ export type StudentsLifeStudentsLiveIdealGoal = {
2
+ id: string;
3
+ userId: string;
4
+ isGood: boolean;
5
+ content: string;
6
+ createdAt: string;
7
+ };
8
+ export type StudentsLifeStudentsLiveIdealGoalCreateInput = {
9
+ isGood: boolean;
10
+ content: string;
11
+ };
12
+ export type StudentsLifeStudentsLiveIdealGoalUpdateInput = {
13
+ isGood: boolean;
14
+ content: string;
15
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,14 @@
1
+ export type StudentsLifeStudentsLiveIdealInspiration = {
2
+ id: string;
3
+ userId: string;
4
+ idealInspirationGroupId: string;
5
+ content: string;
6
+ createdAt: string;
7
+ };
8
+ export type StudentsLifeStudentsLiveIdealInspirationCreateInput = {
9
+ idealInspirationGroupId: string;
10
+ content: string;
11
+ };
12
+ export type StudentsLifeStudentsLiveIdealInspirationUpdateInput = {
13
+ content: string;
14
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ export type StudentsLifeStudentsLiveIdealInspirationGroup = {
2
+ id: string;
3
+ userId: string;
4
+ name: string;
5
+ description: string | null;
6
+ createdAt: string;
7
+ };
8
+ export type StudentsLifeStudentsLiveIdealInspirationGroupCreateInput = {
9
+ name: string;
10
+ description?: string | null;
11
+ };
12
+ export type StudentsLifeStudentsLiveIdealInspirationGroupUpdateInput = {
13
+ name: string;
14
+ description?: string | null;
15
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -10,3 +10,8 @@ export * from "./goal/types";
10
10
  export * from "./principle/types";
11
11
  export * from "./routine/types";
12
12
  export * from "./routine-activity/types";
13
+ export * from "./ideal-inspiration-group/types";
14
+ export * from "./ideal-inspiration/types";
15
+ export * from "./ideal-character-group/types";
16
+ export * from "./ideal-character/types";
17
+ export * from "./ideal-goal/types";
@@ -26,3 +26,8 @@ __exportStar(require("./goal/types"), exports);
26
26
  __exportStar(require("./principle/types"), exports);
27
27
  __exportStar(require("./routine/types"), exports);
28
28
  __exportStar(require("./routine-activity/types"), exports);
29
+ __exportStar(require("./ideal-inspiration-group/types"), exports);
30
+ __exportStar(require("./ideal-inspiration/types"), exports);
31
+ __exportStar(require("./ideal-character-group/types"), exports);
32
+ __exportStar(require("./ideal-character/types"), exports);
33
+ __exportStar(require("./ideal-goal/types"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniteverses/shared",
3
- "version": "1.0.150",
3
+ "version": "1.0.153",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [