@uniteverses/shared 1.0.133 → 1.0.135

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.
Files changed (27) hide show
  1. package/dist/domains/artists/gamestory/directors/develop/index.d.ts +9 -0
  2. package/dist/domains/artists/gamestory/directors/develop/index.js +9 -0
  3. package/dist/domains/artists/gamestory/directors/develop/library_character/types.d.ts +22 -0
  4. package/dist/domains/artists/gamestory/directors/develop/library_character/types.js +2 -0
  5. package/dist/domains/artists/gamestory/directors/develop/library_character_group/types.d.ts +15 -0
  6. package/dist/domains/artists/gamestory/directors/develop/library_character_group/types.js +2 -0
  7. package/dist/domains/artists/gamestory/directors/develop/library_music/types.d.ts +28 -0
  8. package/dist/domains/artists/gamestory/directors/develop/library_music/types.js +2 -0
  9. package/dist/domains/artists/gamestory/directors/develop/library_music_group/types.d.ts +15 -0
  10. package/dist/domains/artists/gamestory/directors/develop/library_music_group/types.js +2 -0
  11. package/dist/domains/artists/gamestory/directors/develop/library_plot/types.d.ts +22 -0
  12. package/dist/domains/artists/gamestory/directors/develop/library_plot/types.js +2 -0
  13. package/dist/domains/artists/gamestory/directors/develop/library_plot_group/types.d.ts +15 -0
  14. package/dist/domains/artists/gamestory/directors/develop/library_plot_group/types.js +2 -0
  15. package/dist/domains/artists/gamestory/directors/develop/library_story/types.d.ts +19 -0
  16. package/dist/domains/artists/gamestory/directors/develop/library_story/types.js +2 -0
  17. package/dist/domains/artists/gamestory/directors/develop/library_story_group/types.d.ts +15 -0
  18. package/dist/domains/artists/gamestory/directors/develop/library_story_group/types.js +2 -0
  19. package/dist/domains/artists/gamestory/directors/develop/project/types.d.ts +22 -0
  20. package/dist/domains/artists/gamestory/directors/develop/project_beat/types.d.ts +39 -0
  21. package/dist/domains/artists/gamestory/directors/develop/project_beat/types.js +2 -0
  22. package/dist/domains/artists/gamestory/directors/develop/voice/types.d.ts +3 -0
  23. package/dist/domains/ceos/technology/ceos/manage/index.d.ts +1 -0
  24. package/dist/domains/ceos/technology/ceos/manage/index.js +1 -0
  25. package/dist/domains/ceos/technology/ceos/manage/organization_goal/types.d.ts +22 -0
  26. package/dist/domains/ceos/technology/ceos/manage/organization_goal/types.js +2 -0
  27. package/package.json +1 -1
@@ -16,3 +16,12 @@ export * from "./line/types";
16
16
  export * from "./line_audio/types";
17
17
  export * from "./voice/types";
18
18
  export * from "./storyboard/types";
19
+ export * from "./library_story/types";
20
+ export * from "./library_character/types";
21
+ export * from "./library_music/types";
22
+ export * from "./library_plot/types";
23
+ export * from "./library_story_group/types";
24
+ export * from "./library_character_group/types";
25
+ export * from "./library_music_group/types";
26
+ export * from "./library_plot_group/types";
27
+ export * from "./project_beat/types";
@@ -32,3 +32,12 @@ __exportStar(require("./line/types"), exports);
32
32
  __exportStar(require("./line_audio/types"), exports);
33
33
  __exportStar(require("./voice/types"), exports);
34
34
  __exportStar(require("./storyboard/types"), exports);
35
+ __exportStar(require("./library_story/types"), exports);
36
+ __exportStar(require("./library_character/types"), exports);
37
+ __exportStar(require("./library_music/types"), exports);
38
+ __exportStar(require("./library_plot/types"), exports);
39
+ __exportStar(require("./library_story_group/types"), exports);
40
+ __exportStar(require("./library_character_group/types"), exports);
41
+ __exportStar(require("./library_music_group/types"), exports);
42
+ __exportStar(require("./library_plot_group/types"), exports);
43
+ __exportStar(require("./project_beat/types"), exports);
@@ -0,0 +1,22 @@
1
+ export type ArtistsGamestoryDirectorsDevelopLibraryCharacter = {
2
+ id: string;
3
+ userId: string;
4
+ name: string;
5
+ description: string | null;
6
+ storyIds: string[];
7
+ groupId: string | null;
8
+ createdAt: string;
9
+ };
10
+ export type ArtistsGamestoryDirectorsDevelopLibraryCharacterSetGroupInput = {
11
+ groupId: string | null;
12
+ };
13
+ export type ArtistsGamestoryDirectorsDevelopLibraryCharacterCreateInput = {
14
+ name: string;
15
+ description?: string | null;
16
+ storyIds?: string[];
17
+ };
18
+ export type ArtistsGamestoryDirectorsDevelopLibraryCharacterUpdateInput = {
19
+ name: string;
20
+ description?: string | null;
21
+ storyIds?: string[];
22
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ export type ArtistsGamestoryDirectorsDevelopLibraryCharacterGroup = {
2
+ id: string;
3
+ userId: string;
4
+ name: string;
5
+ parentId: string | null;
6
+ createdAt: string;
7
+ };
8
+ export type ArtistsGamestoryDirectorsDevelopLibraryCharacterGroupCreateInput = {
9
+ name: string;
10
+ parentId?: string | null;
11
+ };
12
+ export type ArtistsGamestoryDirectorsDevelopLibraryCharacterGroupUpdateInput = {
13
+ name: string;
14
+ parentId?: string | null;
15
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,28 @@
1
+ export type ArtistsGamestoryDirectorsDevelopLibraryMusic = {
2
+ id: string;
3
+ userId: string;
4
+ name: string;
5
+ description: string | null;
6
+ artist: string | null;
7
+ url: string | null;
8
+ storyIds: string[];
9
+ groupId: string | null;
10
+ createdAt: string;
11
+ };
12
+ export type ArtistsGamestoryDirectorsDevelopLibraryMusicSetGroupInput = {
13
+ groupId: string | null;
14
+ };
15
+ export type ArtistsGamestoryDirectorsDevelopLibraryMusicCreateInput = {
16
+ name: string;
17
+ description?: string | null;
18
+ artist?: string | null;
19
+ url?: string | null;
20
+ storyIds?: string[];
21
+ };
22
+ export type ArtistsGamestoryDirectorsDevelopLibraryMusicUpdateInput = {
23
+ name: string;
24
+ description?: string | null;
25
+ artist?: string | null;
26
+ url?: string | null;
27
+ storyIds?: string[];
28
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ export type ArtistsGamestoryDirectorsDevelopLibraryMusicGroup = {
2
+ id: string;
3
+ userId: string;
4
+ name: string;
5
+ parentId: string | null;
6
+ createdAt: string;
7
+ };
8
+ export type ArtistsGamestoryDirectorsDevelopLibraryMusicGroupCreateInput = {
9
+ name: string;
10
+ parentId?: string | null;
11
+ };
12
+ export type ArtistsGamestoryDirectorsDevelopLibraryMusicGroupUpdateInput = {
13
+ name: string;
14
+ parentId?: string | null;
15
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,22 @@
1
+ export type ArtistsGamestoryDirectorsDevelopLibraryPlot = {
2
+ id: string;
3
+ userId: string;
4
+ name: string;
5
+ description: string | null;
6
+ storyIds: string[];
7
+ groupId: string | null;
8
+ createdAt: string;
9
+ };
10
+ export type ArtistsGamestoryDirectorsDevelopLibraryPlotSetGroupInput = {
11
+ groupId: string | null;
12
+ };
13
+ export type ArtistsGamestoryDirectorsDevelopLibraryPlotCreateInput = {
14
+ name: string;
15
+ description?: string | null;
16
+ storyIds?: string[];
17
+ };
18
+ export type ArtistsGamestoryDirectorsDevelopLibraryPlotUpdateInput = {
19
+ name: string;
20
+ description?: string | null;
21
+ storyIds?: string[];
22
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ export type ArtistsGamestoryDirectorsDevelopLibraryPlotGroup = {
2
+ id: string;
3
+ userId: string;
4
+ name: string;
5
+ parentId: string | null;
6
+ createdAt: string;
7
+ };
8
+ export type ArtistsGamestoryDirectorsDevelopLibraryPlotGroupCreateInput = {
9
+ name: string;
10
+ parentId?: string | null;
11
+ };
12
+ export type ArtistsGamestoryDirectorsDevelopLibraryPlotGroupUpdateInput = {
13
+ name: string;
14
+ parentId?: string | null;
15
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,19 @@
1
+ export type ArtistsGamestoryDirectorsDevelopLibraryStory = {
2
+ id: string;
3
+ userId: string;
4
+ name: string;
5
+ description: string | null;
6
+ groupId: string | null;
7
+ createdAt: string;
8
+ };
9
+ export type ArtistsGamestoryDirectorsDevelopLibraryStorySetGroupInput = {
10
+ groupId: string | null;
11
+ };
12
+ export type ArtistsGamestoryDirectorsDevelopLibraryStoryCreateInput = {
13
+ name: string;
14
+ description?: string | null;
15
+ };
16
+ export type ArtistsGamestoryDirectorsDevelopLibraryStoryUpdateInput = {
17
+ name: string;
18
+ description?: string | null;
19
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ export type ArtistsGamestoryDirectorsDevelopLibraryStoryGroup = {
2
+ id: string;
3
+ userId: string;
4
+ name: string;
5
+ parentId: string | null;
6
+ createdAt: string;
7
+ };
8
+ export type ArtistsGamestoryDirectorsDevelopLibraryStoryGroupCreateInput = {
9
+ name: string;
10
+ parentId?: string | null;
11
+ };
12
+ export type ArtistsGamestoryDirectorsDevelopLibraryStoryGroupUpdateInput = {
13
+ name: string;
14
+ parentId?: string | null;
15
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -11,9 +11,21 @@ export type ArtistsGamestoryDirectorsDevelopProjectTranslation = {
11
11
  export type ArtistsGamestoryDirectorsDevelopProject = {
12
12
  id: string;
13
13
  userId: string;
14
+ setting: string | null;
15
+ premise: string | null;
16
+ mc1: string | null;
17
+ mc2: string | null;
18
+ ending: string | null;
14
19
  createdAt: string;
15
20
  translations: ArtistsGamestoryDirectorsDevelopProjectTranslation[];
16
21
  images: ArtistsGamestoryDirectorsDevelopProjectImage[];
22
+ libraryStoryIds: string[];
23
+ libraryCharacterIds: string[];
24
+ libraryMusicIds: string[];
25
+ libraryPlotIds: string[];
26
+ };
27
+ export type ArtistsGamestoryDirectorsDevelopProjectLibrarySetInput = {
28
+ ids: string[];
17
29
  };
18
30
  export type ArtistsGamestoryDirectorsDevelopProjectTranslationInput = {
19
31
  languageId: string;
@@ -22,7 +34,17 @@ export type ArtistsGamestoryDirectorsDevelopProjectTranslationInput = {
22
34
  };
23
35
  export type ArtistsGamestoryDirectorsDevelopProjectCreateInput = {
24
36
  translations: ArtistsGamestoryDirectorsDevelopProjectTranslationInput[];
37
+ setting?: string | null;
38
+ premise?: string | null;
39
+ mc1?: string | null;
40
+ mc2?: string | null;
41
+ ending?: string | null;
25
42
  };
26
43
  export type ArtistsGamestoryDirectorsDevelopProjectUpdateInput = {
27
44
  translations: ArtistsGamestoryDirectorsDevelopProjectTranslationInput[];
45
+ setting?: string | null;
46
+ premise?: string | null;
47
+ mc1?: string | null;
48
+ mc2?: string | null;
49
+ ending?: string | null;
28
50
  };
@@ -0,0 +1,39 @@
1
+ export type ArtistsGamestoryDirectorsDevelopProjectBeat = {
2
+ id: string;
3
+ projectId: string;
4
+ libraryMusicId: string | null;
5
+ libraryCharacterId: string | null;
6
+ libraryPlotId: string | null;
7
+ setting: string | null;
8
+ premise: string | null;
9
+ mc1: string | null;
10
+ mc2: string | null;
11
+ ending: string | null;
12
+ order: number;
13
+ createdAt: string;
14
+ };
15
+ export type ArtistsGamestoryDirectorsDevelopProjectBeatCreateInput = {
16
+ projectId: string;
17
+ order?: number | null;
18
+ libraryMusicId?: string | null;
19
+ libraryCharacterId?: string | null;
20
+ libraryPlotId?: string | null;
21
+ setting?: string | null;
22
+ premise?: string | null;
23
+ mc1?: string | null;
24
+ mc2?: string | null;
25
+ ending?: string | null;
26
+ };
27
+ export type ArtistsGamestoryDirectorsDevelopProjectBeatUpdateInput = {
28
+ libraryMusicId?: string | null;
29
+ libraryCharacterId?: string | null;
30
+ libraryPlotId?: string | null;
31
+ setting?: string | null;
32
+ premise?: string | null;
33
+ mc1?: string | null;
34
+ mc2?: string | null;
35
+ ending?: string | null;
36
+ };
37
+ export type ArtistsGamestoryDirectorsDevelopProjectBeatReorderInput = {
38
+ order: number;
39
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -19,3 +19,6 @@ export type ArtistsGamestoryDirectorsDevelopVoiceCreateInput = {
19
19
  name: string;
20
20
  previewUrl?: string | null;
21
21
  };
22
+ export type ArtistsGamestoryDirectorsDevelopVoiceCreateByIdInput = {
23
+ elevenVoiceId: string;
24
+ };
@@ -1,6 +1,7 @@
1
1
  export * from "./ordering/types";
2
2
  export * from "./ordering/constants";
3
3
  export * from "./organization/types";
4
+ export * from "./organization_goal/types";
4
5
  export * from "./project_group/types";
5
6
  export * from "./project/types";
6
7
  export * from "./project_stage_group/types";
@@ -17,6 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./ordering/types"), exports);
18
18
  __exportStar(require("./ordering/constants"), exports);
19
19
  __exportStar(require("./organization/types"), exports);
20
+ __exportStar(require("./organization_goal/types"), exports);
20
21
  __exportStar(require("./project_group/types"), exports);
21
22
  __exportStar(require("./project/types"), exports);
22
23
  __exportStar(require("./project_stage_group/types"), exports);
@@ -0,0 +1,22 @@
1
+ export type CeosTechnologyCeosManageOrganizationGoal = {
2
+ id: string;
3
+ organizationId: string;
4
+ description: string;
5
+ done: boolean;
6
+ position: number;
7
+ createdByUserId: string;
8
+ createdAt: string;
9
+ updatedAt: string;
10
+ };
11
+ export type CeosTechnologyCeosManageOrganizationGoalCreateInput = {
12
+ organizationId: string;
13
+ description: string;
14
+ done?: boolean;
15
+ };
16
+ export type CeosTechnologyCeosManageOrganizationGoalUpdateInput = {
17
+ description: string;
18
+ done: boolean;
19
+ };
20
+ export type CeosTechnologyCeosManageOrganizationGoalReorderInput = {
21
+ position: number;
22
+ };
@@ -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.133",
3
+ "version": "1.0.135",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [