@uniteverses/shared 1.0.126 → 1.0.127

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.
@@ -1,4 +1,5 @@
1
1
  import type { ArtistsGamestoryDirectorsDevelopCharacterImage } from "../character_image/types";
2
+ import type { ArtistsGamestoryDirectorsDevelopVoice } from "../voice/types";
2
3
  export type ArtistsGamestoryDirectorsDevelopCharacterTranslation = {
3
4
  id: string;
4
5
  characterId: string;
@@ -11,6 +12,7 @@ export type ArtistsGamestoryDirectorsDevelopCharacterTranslation = {
11
12
  export type ArtistsGamestoryDirectorsDevelopCharacter = {
12
13
  id: string;
13
14
  projectId: string;
15
+ voice: ArtistsGamestoryDirectorsDevelopVoice | null;
14
16
  createdAt: string;
15
17
  translations: ArtistsGamestoryDirectorsDevelopCharacterTranslation[];
16
18
  images: ArtistsGamestoryDirectorsDevelopCharacterImage[];
@@ -22,8 +24,10 @@ export type ArtistsGamestoryDirectorsDevelopCharacterTranslationInput = {
22
24
  };
23
25
  export type ArtistsGamestoryDirectorsDevelopCharacterCreateInput = {
24
26
  projectId: string;
27
+ voiceId?: string | null;
25
28
  translations: ArtistsGamestoryDirectorsDevelopCharacterTranslationInput[];
26
29
  };
27
30
  export type ArtistsGamestoryDirectorsDevelopCharacterUpdateInput = {
31
+ voiceId?: string | null;
28
32
  translations: ArtistsGamestoryDirectorsDevelopCharacterTranslationInput[];
29
33
  };
@@ -13,4 +13,6 @@ export * from "./scene/types";
13
13
  export * from "./shot/types";
14
14
  export * from "./frame/types";
15
15
  export * from "./line/types";
16
+ export * from "./line_audio/types";
17
+ export * from "./voice/types";
16
18
  export * from "./storyboard/types";
@@ -29,4 +29,6 @@ __exportStar(require("./scene/types"), exports);
29
29
  __exportStar(require("./shot/types"), exports);
30
30
  __exportStar(require("./frame/types"), exports);
31
31
  __exportStar(require("./line/types"), exports);
32
+ __exportStar(require("./line_audio/types"), exports);
33
+ __exportStar(require("./voice/types"), exports);
32
34
  __exportStar(require("./storyboard/types"), exports);
@@ -0,0 +1,11 @@
1
+ export type ArtistsGamestoryDirectorsDevelopLineAudio = {
2
+ id: string;
3
+ translationId: string;
4
+ lineId: string;
5
+ languageId: string;
6
+ url: string;
7
+ createdAt: string;
8
+ };
9
+ export type ArtistsGamestoryDirectorsDevelopLineAudioGenerateInput = {
10
+ languageId: string;
11
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,19 @@
1
+ export type ArtistsGamestoryDirectorsDevelopVoiceOption = {
2
+ id: string;
3
+ name: string;
4
+ category: string | null;
5
+ previewUrl: string | null;
6
+ labels: Record<string, string>;
7
+ };
8
+ export type ArtistsGamestoryDirectorsDevelopVoice = {
9
+ id: string;
10
+ elevenVoiceId: string;
11
+ name: string;
12
+ previewUrl: string | null;
13
+ createdAt: string;
14
+ };
15
+ export type ArtistsGamestoryDirectorsDevelopVoiceCreateInput = {
16
+ elevenVoiceId: string;
17
+ name: string;
18
+ previewUrl?: string | null;
19
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniteverses/shared",
3
- "version": "1.0.126",
3
+ "version": "1.0.127",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [