@uniteverses/shared 1.0.143 → 1.0.145

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.
@@ -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 });
@@ -25,3 +25,4 @@ export * from "./library_character_group/types";
25
25
  export * from "./library_music_group/types";
26
26
  export * from "./library_plot_group/types";
27
27
  export * from "./project_beat/types";
28
+ export * from "./gamestory/types";
@@ -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);
@@ -4,10 +4,12 @@ export type StudentsLifeStudentsLiveGoal = {
4
4
  content: string;
5
5
  position: number;
6
6
  done: boolean;
7
+ routineActivityId: string | null;
7
8
  createdAt: string;
8
9
  };
9
10
  export type StudentsLifeStudentsLiveGoalCreateInput = {
10
11
  content: string;
12
+ routineActivityId?: string | null;
11
13
  };
12
14
  export type StudentsLifeStudentsLiveGoalUpdateInput = {
13
15
  content: string;
@@ -18,3 +20,6 @@ export type StudentsLifeStudentsLiveGoalReorderInput = {
18
20
  export type StudentsLifeStudentsLiveGoalSetDoneInput = {
19
21
  done: boolean;
20
22
  };
23
+ export type StudentsLifeStudentsLiveGoalSetRoutineActivityInput = {
24
+ routineActivityId: string | null;
25
+ };
@@ -3,6 +3,7 @@ export type StudentsLifeStudentsLiveRoutine = {
3
3
  userId: string;
4
4
  name: string;
5
5
  description: string | null;
6
+ position: number;
6
7
  createdAt: string;
7
8
  };
8
9
  export type StudentsLifeStudentsLiveRoutineCreateInput = {
@@ -13,3 +14,6 @@ export type StudentsLifeStudentsLiveRoutineUpdateInput = {
13
14
  name: string;
14
15
  description?: string | null;
15
16
  };
17
+ export type StudentsLifeStudentsLiveRoutineReorderInput = {
18
+ ids: string[];
19
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniteverses/shared",
3
- "version": "1.0.143",
3
+ "version": "1.0.145",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [