@uniteverses/shared 1.0.128 → 1.0.129
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.
|
@@ -18,6 +18,13 @@ export type ArtistsGamestoryDirectorsDevelopLineTranslationInput = {
|
|
|
18
18
|
languageId: string;
|
|
19
19
|
text: string;
|
|
20
20
|
};
|
|
21
|
+
export type ArtistsGamestoryDirectorsDevelopEpisodeLinesPage = {
|
|
22
|
+
projectId: string;
|
|
23
|
+
lines: ArtistsGamestoryDirectorsDevelopLine[];
|
|
24
|
+
total: number;
|
|
25
|
+
page: number;
|
|
26
|
+
pageSize: number;
|
|
27
|
+
};
|
|
21
28
|
export type ArtistsGamestoryDirectorsDevelopLineCreateInput = {
|
|
22
29
|
frameId: string;
|
|
23
30
|
characterId?: string | null;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export type ArtistsGamestoryDirectorsDevelopVoiceOption = {
|
|
2
2
|
id: string;
|
|
3
|
+
publicOwnerId: string | null;
|
|
3
4
|
name: string;
|
|
4
5
|
category: string | null;
|
|
5
6
|
previewUrl: string | null;
|
|
@@ -14,6 +15,7 @@ export type ArtistsGamestoryDirectorsDevelopVoice = {
|
|
|
14
15
|
};
|
|
15
16
|
export type ArtistsGamestoryDirectorsDevelopVoiceCreateInput = {
|
|
16
17
|
elevenVoiceId: string;
|
|
18
|
+
publicOwnerId?: string | null;
|
|
17
19
|
name: string;
|
|
18
20
|
previewUrl?: string | null;
|
|
19
21
|
};
|