@uniteverses/shared 1.0.121 → 1.0.122
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.
- package/dist/domains/artists/gamestory/directors/develop/character/types.d.ts +29 -0
- package/dist/domains/artists/gamestory/directors/develop/character/types.js +2 -0
- package/dist/domains/artists/gamestory/directors/develop/character_image/types.d.ts +6 -0
- package/dist/domains/artists/gamestory/directors/develop/character_image/types.js +2 -0
- package/dist/domains/artists/gamestory/directors/develop/character_image_generation/types.d.ts +8 -0
- package/dist/domains/artists/gamestory/directors/develop/character_image_generation/types.js +2 -0
- package/dist/domains/artists/gamestory/directors/develop/index.d.ts +7 -0
- package/dist/domains/artists/gamestory/directors/develop/index.js +7 -0
- package/dist/domains/artists/gamestory/directors/develop/project_image_generation/types.d.ts +8 -0
- package/dist/domains/artists/gamestory/directors/develop/project_image_generation/types.js +2 -0
- package/dist/domains/artists/gamestory/directors/develop/setting/types.d.ts +29 -0
- package/dist/domains/artists/gamestory/directors/develop/setting/types.js +2 -0
- package/dist/domains/artists/gamestory/directors/develop/setting_image/types.d.ts +6 -0
- package/dist/domains/artists/gamestory/directors/develop/setting_image/types.js +2 -0
- package/dist/domains/artists/gamestory/directors/develop/setting_image_generation/types.d.ts +8 -0
- package/dist/domains/artists/gamestory/directors/develop/setting_image_generation/types.js +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { ArtistsGamestoryDirectorsDevelopCharacterImage } from "../character_image/types";
|
|
2
|
+
export type ArtistsGamestoryDirectorsDevelopCharacterTranslation = {
|
|
3
|
+
id: string;
|
|
4
|
+
characterId: string;
|
|
5
|
+
languageId: string;
|
|
6
|
+
languageCode: string;
|
|
7
|
+
name: string;
|
|
8
|
+
description: string | null;
|
|
9
|
+
createdAt: string;
|
|
10
|
+
};
|
|
11
|
+
export type ArtistsGamestoryDirectorsDevelopCharacter = {
|
|
12
|
+
id: string;
|
|
13
|
+
projectId: string;
|
|
14
|
+
createdAt: string;
|
|
15
|
+
translations: ArtistsGamestoryDirectorsDevelopCharacterTranslation[];
|
|
16
|
+
images: ArtistsGamestoryDirectorsDevelopCharacterImage[];
|
|
17
|
+
};
|
|
18
|
+
export type ArtistsGamestoryDirectorsDevelopCharacterTranslationInput = {
|
|
19
|
+
languageId: string;
|
|
20
|
+
name: string;
|
|
21
|
+
description?: string | null;
|
|
22
|
+
};
|
|
23
|
+
export type ArtistsGamestoryDirectorsDevelopCharacterCreateInput = {
|
|
24
|
+
projectId: string;
|
|
25
|
+
translations: ArtistsGamestoryDirectorsDevelopCharacterTranslationInput[];
|
|
26
|
+
};
|
|
27
|
+
export type ArtistsGamestoryDirectorsDevelopCharacterUpdateInput = {
|
|
28
|
+
translations: ArtistsGamestoryDirectorsDevelopCharacterTranslationInput[];
|
|
29
|
+
};
|
|
@@ -1,3 +1,10 @@
|
|
|
1
1
|
export * from "./language/types";
|
|
2
2
|
export * from "./project/types";
|
|
3
3
|
export * from "./project_image/types";
|
|
4
|
+
export * from "./project_image_generation/types";
|
|
5
|
+
export * from "./setting/types";
|
|
6
|
+
export * from "./setting_image/types";
|
|
7
|
+
export * from "./setting_image_generation/types";
|
|
8
|
+
export * from "./character/types";
|
|
9
|
+
export * from "./character_image/types";
|
|
10
|
+
export * from "./character_image_generation/types";
|
|
@@ -17,3 +17,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./language/types"), exports);
|
|
18
18
|
__exportStar(require("./project/types"), exports);
|
|
19
19
|
__exportStar(require("./project_image/types"), exports);
|
|
20
|
+
__exportStar(require("./project_image_generation/types"), exports);
|
|
21
|
+
__exportStar(require("./setting/types"), exports);
|
|
22
|
+
__exportStar(require("./setting_image/types"), exports);
|
|
23
|
+
__exportStar(require("./setting_image_generation/types"), exports);
|
|
24
|
+
__exportStar(require("./character/types"), exports);
|
|
25
|
+
__exportStar(require("./character_image/types"), exports);
|
|
26
|
+
__exportStar(require("./character_image_generation/types"), exports);
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { ArtistsGamestoryDirectorsDevelopSettingImage } from "../setting_image/types";
|
|
2
|
+
export type ArtistsGamestoryDirectorsDevelopSettingTranslation = {
|
|
3
|
+
id: string;
|
|
4
|
+
settingId: string;
|
|
5
|
+
languageId: string;
|
|
6
|
+
languageCode: string;
|
|
7
|
+
name: string;
|
|
8
|
+
description: string | null;
|
|
9
|
+
createdAt: string;
|
|
10
|
+
};
|
|
11
|
+
export type ArtistsGamestoryDirectorsDevelopSetting = {
|
|
12
|
+
id: string;
|
|
13
|
+
projectId: string;
|
|
14
|
+
createdAt: string;
|
|
15
|
+
translations: ArtistsGamestoryDirectorsDevelopSettingTranslation[];
|
|
16
|
+
images: ArtistsGamestoryDirectorsDevelopSettingImage[];
|
|
17
|
+
};
|
|
18
|
+
export type ArtistsGamestoryDirectorsDevelopSettingTranslationInput = {
|
|
19
|
+
languageId: string;
|
|
20
|
+
name: string;
|
|
21
|
+
description?: string | null;
|
|
22
|
+
};
|
|
23
|
+
export type ArtistsGamestoryDirectorsDevelopSettingCreateInput = {
|
|
24
|
+
projectId: string;
|
|
25
|
+
translations: ArtistsGamestoryDirectorsDevelopSettingTranslationInput[];
|
|
26
|
+
};
|
|
27
|
+
export type ArtistsGamestoryDirectorsDevelopSettingUpdateInput = {
|
|
28
|
+
translations: ArtistsGamestoryDirectorsDevelopSettingTranslationInput[];
|
|
29
|
+
};
|