@uniteverses/shared 1.0.143 → 1.0.144
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/gamestory/types.d.ts +19 -0
- package/dist/domains/artists/gamestory/directors/develop/gamestory/types.js +5 -0
- package/dist/domains/artists/gamestory/directors/develop/index.d.ts +1 -0
- package/dist/domains/artists/gamestory/directors/develop/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export type ArtistsGamestoryDirectorsDevelopGamestoryStory = {
|
|
2
|
+
id: string;
|
|
3
|
+
name: string;
|
|
4
|
+
description: string | null;
|
|
5
|
+
coverUrl: string | null;
|
|
6
|
+
episodeCount: number;
|
|
7
|
+
};
|
|
8
|
+
export type ArtistsGamestoryDirectorsDevelopGamestoryEpisode = {
|
|
9
|
+
id: string;
|
|
10
|
+
order: number;
|
|
11
|
+
notes: string | null;
|
|
12
|
+
};
|
|
13
|
+
export type ArtistsGamestoryDirectorsDevelopGamestoryStoryDetail = {
|
|
14
|
+
id: string;
|
|
15
|
+
name: string;
|
|
16
|
+
description: string | null;
|
|
17
|
+
coverUrl: string | null;
|
|
18
|
+
episodes: ArtistsGamestoryDirectorsDevelopGamestoryEpisode[];
|
|
19
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// The public gallery: read-only, unauthenticated views of projects and episodes
|
|
3
|
+
// their authors have marked public. Names/descriptions come from a project's
|
|
4
|
+
// primary translation; covers are signed image URLs.
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -41,3 +41,4 @@ __exportStar(require("./library_character_group/types"), exports);
|
|
|
41
41
|
__exportStar(require("./library_music_group/types"), exports);
|
|
42
42
|
__exportStar(require("./library_plot_group/types"), exports);
|
|
43
43
|
__exportStar(require("./project_beat/types"), exports);
|
|
44
|
+
__exportStar(require("./gamestory/types"), exports);
|