@uniteverses/shared 1.0.118 → 1.0.120

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 @@
1
+ export * from "./project/types";
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./project/types"), exports);
@@ -0,0 +1,26 @@
1
+ export type ArtistsGamestoryDirectorsDevelopProjectTranslation = {
2
+ id: string;
3
+ projectId: string;
4
+ languageId: string;
5
+ languageCode: string;
6
+ name: string;
7
+ description: string | null;
8
+ createdAt: string;
9
+ };
10
+ export type ArtistsGamestoryDirectorsDevelopProject = {
11
+ id: string;
12
+ userId: string;
13
+ createdAt: string;
14
+ translations: ArtistsGamestoryDirectorsDevelopProjectTranslation[];
15
+ };
16
+ export type ArtistsGamestoryDirectorsDevelopProjectTranslationInput = {
17
+ languageId: string;
18
+ name: string;
19
+ description?: string | null;
20
+ };
21
+ export type ArtistsGamestoryDirectorsDevelopProjectCreateInput = {
22
+ translations: ArtistsGamestoryDirectorsDevelopProjectTranslationInput[];
23
+ };
24
+ export type ArtistsGamestoryDirectorsDevelopProjectUpdateInput = {
25
+ translations: ArtistsGamestoryDirectorsDevelopProjectTranslationInput[];
26
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,16 @@
1
+ export type StudentsLifeStudentsLiveGoal = {
2
+ id: string;
3
+ userId: string;
4
+ content: string;
5
+ position: number;
6
+ createdAt: string;
7
+ };
8
+ export type StudentsLifeStudentsLiveGoalCreateInput = {
9
+ content: string;
10
+ };
11
+ export type StudentsLifeStudentsLiveGoalUpdateInput = {
12
+ content: string;
13
+ };
14
+ export type StudentsLifeStudentsLiveGoalReorderInput = {
15
+ ids: string[];
16
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -3,3 +3,4 @@ export * from "./ideal/types";
3
3
  export * from "./ideal-influence/types";
4
4
  export * from "./person/types";
5
5
  export * from "./diary-entry/types";
6
+ export * from "./goal/types";
@@ -19,3 +19,4 @@ __exportStar(require("./ideal/types"), exports);
19
19
  __exportStar(require("./ideal-influence/types"), exports);
20
20
  __exportStar(require("./person/types"), exports);
21
21
  __exportStar(require("./diary-entry/types"), exports);
22
+ __exportStar(require("./goal/types"), exports);
package/dist/index.d.ts CHANGED
@@ -3,3 +3,4 @@ export * from "./domains/teachers/prep_center/students/simulate/types";
3
3
  export * from "./domains/students/communication/students/practice";
4
4
  export * from "./domains/students/life/students/live";
5
5
  export * from "./domains/lawyers/real_estate/assistants/research";
6
+ export * from "./domains/artists/gamestory/directors/develop";
package/dist/index.js CHANGED
@@ -19,3 +19,4 @@ __exportStar(require("./domains/teachers/prep_center/students/simulate/types"),
19
19
  __exportStar(require("./domains/students/communication/students/practice"), exports);
20
20
  __exportStar(require("./domains/students/life/students/live"), exports);
21
21
  __exportStar(require("./domains/lawyers/real_estate/assistants/research"), exports);
22
+ __exportStar(require("./domains/artists/gamestory/directors/develop"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniteverses/shared",
3
- "version": "1.0.118",
3
+ "version": "1.0.120",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [