@uniteverses/shared 1.0.134 → 1.0.136

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 (40) 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/ceos/technology/ceos/manage/index.d.ts +1 -0
  23. package/dist/domains/ceos/technology/ceos/manage/index.js +1 -0
  24. package/dist/domains/ceos/technology/ceos/manage/organization_goal/types.d.ts +22 -0
  25. package/dist/domains/ceos/technology/ceos/manage/organization_goal/types.js +2 -0
  26. package/dist/domains/students/life/students/live/index.d.ts +2 -0
  27. package/dist/domains/students/life/students/live/index.js +2 -0
  28. package/dist/domains/students/life/students/live/person-tag/types.d.ts +12 -0
  29. package/dist/domains/students/life/students/live/person-tag/types.js +2 -0
  30. package/dist/domains/students/life/students/live/person-tag-assignment/types.d.ts +15 -0
  31. package/dist/domains/students/life/students/live/person-tag-assignment/types.js +2 -0
  32. package/dist/domains/traders/proprietary/traders/research/index.d.ts +2 -0
  33. package/dist/domains/traders/proprietary/traders/research/index.js +18 -0
  34. package/dist/domains/traders/proprietary/traders/research/insider_trade/constants.d.ts +4 -0
  35. package/dist/domains/traders/proprietary/traders/research/insider_trade/constants.js +7 -0
  36. package/dist/domains/traders/proprietary/traders/research/insider_trade/types.d.ts +12 -0
  37. package/dist/domains/traders/proprietary/traders/research/insider_trade/types.js +2 -0
  38. package/dist/index.d.ts +1 -0
  39. package/dist/index.js +1 -0
  40. 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 });
@@ -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 });
@@ -2,5 +2,7 @@ export * from "./reminder/types";
2
2
  export * from "./ideal/types";
3
3
  export * from "./ideal-influence/types";
4
4
  export * from "./person/types";
5
+ export * from "./person-tag/types";
6
+ export * from "./person-tag-assignment/types";
5
7
  export * from "./diary-entry/types";
6
8
  export * from "./goal/types";
@@ -18,5 +18,7 @@ __exportStar(require("./reminder/types"), exports);
18
18
  __exportStar(require("./ideal/types"), exports);
19
19
  __exportStar(require("./ideal-influence/types"), exports);
20
20
  __exportStar(require("./person/types"), exports);
21
+ __exportStar(require("./person-tag/types"), exports);
22
+ __exportStar(require("./person-tag-assignment/types"), exports);
21
23
  __exportStar(require("./diary-entry/types"), exports);
22
24
  __exportStar(require("./goal/types"), exports);
@@ -0,0 +1,12 @@
1
+ export type StudentsLifeStudentsLivePersonTag = {
2
+ id: string;
3
+ userId: string;
4
+ name: string;
5
+ createdAt: string;
6
+ };
7
+ export type StudentsLifeStudentsLivePersonTagCreateInput = {
8
+ name: string;
9
+ };
10
+ export type StudentsLifeStudentsLivePersonTagUpdateInput = {
11
+ name: string;
12
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ import type { StudentsLifeStudentsLivePerson } from "../person/types";
2
+ import type { StudentsLifeStudentsLivePersonTag } from "../person-tag/types";
3
+ export type StudentsLifeStudentsLivePersonTagAssignment = {
4
+ id: string;
5
+ userId: string;
6
+ personId: string;
7
+ personTagId: string;
8
+ createdAt: string;
9
+ person: StudentsLifeStudentsLivePerson;
10
+ tag: StudentsLifeStudentsLivePersonTag;
11
+ };
12
+ export type StudentsLifeStudentsLivePersonTagAssignmentCreateInput = {
13
+ personId: string;
14
+ personTagId: string;
15
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ export * from "./insider_trade/types";
2
+ export * from "./insider_trade/constants";
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./insider_trade/types"), exports);
18
+ __exportStar(require("./insider_trade/constants"), exports);
@@ -0,0 +1,4 @@
1
+ export declare const TRADERS_PROPRIETARY_TRADERS_RESEARCH_INSIDER_TRADE_SOURCES: {
2
+ readonly QUIVER: "quiver";
3
+ readonly MASSIVE: "massive";
4
+ };
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TRADERS_PROPRIETARY_TRADERS_RESEARCH_INSIDER_TRADE_SOURCES = void 0;
4
+ exports.TRADERS_PROPRIETARY_TRADERS_RESEARCH_INSIDER_TRADE_SOURCES = {
5
+ QUIVER: "quiver",
6
+ MASSIVE: "massive",
7
+ };
@@ -0,0 +1,12 @@
1
+ export type TradersProprietaryTradersResearchInsiderTradeSource = "quiver" | "massive";
2
+ export type TradersProprietaryTradersResearchInsiderTrade = {
3
+ id: string;
4
+ source: TradersProprietaryTradersResearchInsiderTradeSource;
5
+ ticker: string;
6
+ insiderName: string;
7
+ transactionType: string;
8
+ shares: number | null;
9
+ pricePerShare: number | null;
10
+ value: number | null;
11
+ transactionDate: string;
12
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/dist/index.d.ts CHANGED
@@ -6,3 +6,4 @@ export * from "./domains/students/life/students/live";
6
6
  export * from "./domains/lawyers/real_estate/assistants/research";
7
7
  export * from "./domains/artists/gamestory/directors/develop";
8
8
  export * from "./domains/ceos/technology/ceos/manage";
9
+ export * from "./domains/traders/proprietary/traders/research";
package/dist/index.js CHANGED
@@ -22,3 +22,4 @@ __exportStar(require("./domains/students/life/students/live"), exports);
22
22
  __exportStar(require("./domains/lawyers/real_estate/assistants/research"), exports);
23
23
  __exportStar(require("./domains/artists/gamestory/directors/develop"), exports);
24
24
  __exportStar(require("./domains/ceos/technology/ceos/manage"), exports);
25
+ __exportStar(require("./domains/traders/proprietary/traders/research"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniteverses/shared",
3
- "version": "1.0.134",
3
+ "version": "1.0.136",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [