@uniteverses/shared 1.0.122 → 1.0.124
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/episode/types.d.ts +16 -0
- package/dist/domains/artists/gamestory/directors/develop/episode/types.js +2 -0
- package/dist/domains/artists/gamestory/directors/develop/frame/types.d.ts +18 -0
- package/dist/domains/artists/gamestory/directors/develop/frame/types.js +2 -0
- package/dist/domains/artists/gamestory/directors/develop/index.d.ts +5 -0
- package/dist/domains/artists/gamestory/directors/develop/index.js +5 -0
- package/dist/domains/artists/gamestory/directors/develop/line/types.d.ts +31 -0
- package/dist/domains/artists/gamestory/directors/develop/line/types.js +2 -0
- package/dist/domains/artists/gamestory/directors/develop/scene/types.d.ts +16 -0
- package/dist/domains/artists/gamestory/directors/develop/scene/types.js +2 -0
- package/dist/domains/artists/gamestory/directors/develop/shot/types.d.ts +16 -0
- package/dist/domains/artists/gamestory/directors/develop/shot/types.js +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export type ArtistsGamestoryDirectorsDevelopEpisode = {
|
|
2
|
+
id: string;
|
|
3
|
+
projectId: string;
|
|
4
|
+
order: number;
|
|
5
|
+
notes: string | null;
|
|
6
|
+
createdAt: string;
|
|
7
|
+
};
|
|
8
|
+
export type ArtistsGamestoryDirectorsDevelopEpisodeCreateInput = {
|
|
9
|
+
projectId: string;
|
|
10
|
+
notes?: string | null;
|
|
11
|
+
order?: number | null;
|
|
12
|
+
};
|
|
13
|
+
export type ArtistsGamestoryDirectorsDevelopEpisodeUpdateInput = {
|
|
14
|
+
notes?: string | null;
|
|
15
|
+
order?: number | null;
|
|
16
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export type ArtistsGamestoryDirectorsDevelopFrame = {
|
|
2
|
+
id: string;
|
|
3
|
+
shotId: string;
|
|
4
|
+
projectId: string;
|
|
5
|
+
order: number;
|
|
6
|
+
notes: string | null;
|
|
7
|
+
url: string | null;
|
|
8
|
+
createdAt: string;
|
|
9
|
+
};
|
|
10
|
+
export type ArtistsGamestoryDirectorsDevelopFrameCreateInput = {
|
|
11
|
+
shotId: string;
|
|
12
|
+
notes?: string | null;
|
|
13
|
+
order?: number | null;
|
|
14
|
+
};
|
|
15
|
+
export type ArtistsGamestoryDirectorsDevelopFrameUpdateInput = {
|
|
16
|
+
notes?: string | null;
|
|
17
|
+
order?: number | null;
|
|
18
|
+
};
|
|
@@ -8,3 +8,8 @@ export * from "./setting_image_generation/types";
|
|
|
8
8
|
export * from "./character/types";
|
|
9
9
|
export * from "./character_image/types";
|
|
10
10
|
export * from "./character_image_generation/types";
|
|
11
|
+
export * from "./episode/types";
|
|
12
|
+
export * from "./scene/types";
|
|
13
|
+
export * from "./shot/types";
|
|
14
|
+
export * from "./frame/types";
|
|
15
|
+
export * from "./line/types";
|
|
@@ -24,3 +24,8 @@ __exportStar(require("./setting_image_generation/types"), exports);
|
|
|
24
24
|
__exportStar(require("./character/types"), exports);
|
|
25
25
|
__exportStar(require("./character_image/types"), exports);
|
|
26
26
|
__exportStar(require("./character_image_generation/types"), exports);
|
|
27
|
+
__exportStar(require("./episode/types"), exports);
|
|
28
|
+
__exportStar(require("./scene/types"), exports);
|
|
29
|
+
__exportStar(require("./shot/types"), exports);
|
|
30
|
+
__exportStar(require("./frame/types"), exports);
|
|
31
|
+
__exportStar(require("./line/types"), exports);
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export type ArtistsGamestoryDirectorsDevelopLineTranslation = {
|
|
2
|
+
id: string;
|
|
3
|
+
lineId: string;
|
|
4
|
+
languageId: string;
|
|
5
|
+
languageCode: string;
|
|
6
|
+
text: string;
|
|
7
|
+
createdAt: string;
|
|
8
|
+
};
|
|
9
|
+
export type ArtistsGamestoryDirectorsDevelopLine = {
|
|
10
|
+
id: string;
|
|
11
|
+
frameId: string;
|
|
12
|
+
characterId: string | null;
|
|
13
|
+
order: number;
|
|
14
|
+
createdAt: string;
|
|
15
|
+
translations: ArtistsGamestoryDirectorsDevelopLineTranslation[];
|
|
16
|
+
};
|
|
17
|
+
export type ArtistsGamestoryDirectorsDevelopLineTranslationInput = {
|
|
18
|
+
languageId: string;
|
|
19
|
+
text: string;
|
|
20
|
+
};
|
|
21
|
+
export type ArtistsGamestoryDirectorsDevelopLineCreateInput = {
|
|
22
|
+
frameId: string;
|
|
23
|
+
characterId?: string | null;
|
|
24
|
+
order?: number | null;
|
|
25
|
+
translations: ArtistsGamestoryDirectorsDevelopLineTranslationInput[];
|
|
26
|
+
};
|
|
27
|
+
export type ArtistsGamestoryDirectorsDevelopLineUpdateInput = {
|
|
28
|
+
characterId?: string | null;
|
|
29
|
+
order?: number | null;
|
|
30
|
+
translations?: ArtistsGamestoryDirectorsDevelopLineTranslationInput[];
|
|
31
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export type ArtistsGamestoryDirectorsDevelopScene = {
|
|
2
|
+
id: string;
|
|
3
|
+
episodeId: string;
|
|
4
|
+
order: number;
|
|
5
|
+
notes: string | null;
|
|
6
|
+
createdAt: string;
|
|
7
|
+
};
|
|
8
|
+
export type ArtistsGamestoryDirectorsDevelopSceneCreateInput = {
|
|
9
|
+
episodeId: string;
|
|
10
|
+
notes?: string | null;
|
|
11
|
+
order?: number | null;
|
|
12
|
+
};
|
|
13
|
+
export type ArtistsGamestoryDirectorsDevelopSceneUpdateInput = {
|
|
14
|
+
notes?: string | null;
|
|
15
|
+
order?: number | null;
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export type ArtistsGamestoryDirectorsDevelopShot = {
|
|
2
|
+
id: string;
|
|
3
|
+
sceneId: string;
|
|
4
|
+
order: number;
|
|
5
|
+
notes: string | null;
|
|
6
|
+
createdAt: string;
|
|
7
|
+
};
|
|
8
|
+
export type ArtistsGamestoryDirectorsDevelopShotCreateInput = {
|
|
9
|
+
sceneId: string;
|
|
10
|
+
notes?: string | null;
|
|
11
|
+
order?: number | null;
|
|
12
|
+
};
|
|
13
|
+
export type ArtistsGamestoryDirectorsDevelopShotUpdateInput = {
|
|
14
|
+
notes?: string | null;
|
|
15
|
+
order?: number | null;
|
|
16
|
+
};
|