@uniteverses/shared 1.0.145 → 1.0.147

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.
@@ -4,6 +4,7 @@ export * from "./ideal-influence/types";
4
4
  export * from "./person/types";
5
5
  export * from "./person-tag/types";
6
6
  export * from "./person-tag-assignment/types";
7
+ export * from "./person-goal/types";
7
8
  export * from "./diary-entry/types";
8
9
  export * from "./goal/types";
9
10
  export * from "./principle/types";
@@ -20,6 +20,7 @@ __exportStar(require("./ideal-influence/types"), exports);
20
20
  __exportStar(require("./person/types"), exports);
21
21
  __exportStar(require("./person-tag/types"), exports);
22
22
  __exportStar(require("./person-tag-assignment/types"), exports);
23
+ __exportStar(require("./person-goal/types"), exports);
23
24
  __exportStar(require("./diary-entry/types"), exports);
24
25
  __exportStar(require("./goal/types"), exports);
25
26
  __exportStar(require("./principle/types"), exports);
@@ -0,0 +1,23 @@
1
+ export type StudentsLifeStudentsLivePersonGoal = {
2
+ id: string;
3
+ userId: string;
4
+ personId: string;
5
+ content: string;
6
+ position: number;
7
+ done: boolean;
8
+ createdAt: string;
9
+ };
10
+ export type StudentsLifeStudentsLivePersonGoalCreateInput = {
11
+ personId: string;
12
+ content: string;
13
+ };
14
+ export type StudentsLifeStudentsLivePersonGoalUpdateInput = {
15
+ content: string;
16
+ };
17
+ export type StudentsLifeStudentsLivePersonGoalReorderInput = {
18
+ personId: string;
19
+ ids: string[];
20
+ };
21
+ export type StudentsLifeStudentsLivePersonGoalSetDoneInput = {
22
+ done: boolean;
23
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,3 @@
1
+ export * from "./song/types";
2
+ export * from "./song_phrase/types";
3
+ export * from "./song_cover/types";
@@ -0,0 +1,19 @@
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("./song/types"), exports);
18
+ __exportStar(require("./song_phrase/types"), exports);
19
+ __exportStar(require("./song_cover/types"), exports);
@@ -0,0 +1,17 @@
1
+ export type StudentsLifeStudentsMeditateSong = {
2
+ id: string;
3
+ userId: string;
4
+ title: string;
5
+ lyrics: string;
6
+ phraseCount: number;
7
+ coverCount: number;
8
+ createdAt: string;
9
+ };
10
+ export type StudentsLifeStudentsMeditateSongCreateInput = {
11
+ title: string;
12
+ lyrics?: string;
13
+ };
14
+ export type StudentsLifeStudentsMeditateSongUpdateInput = {
15
+ title?: string;
16
+ lyrics?: string;
17
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,18 @@
1
+ export type StudentsLifeStudentsMeditateSongCover = {
2
+ id: string;
3
+ userId: string;
4
+ songId: string;
5
+ url: string;
6
+ notes: string | null;
7
+ position: number;
8
+ createdAt: string;
9
+ };
10
+ export type StudentsLifeStudentsMeditateSongCoverCreateInput = {
11
+ url: string;
12
+ notes?: string | null;
13
+ };
14
+ export type StudentsLifeStudentsMeditateSongCoverUpdateInput = {
15
+ url?: string;
16
+ notes?: string | null;
17
+ position?: number;
18
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ export type StudentsLifeStudentsMeditateSongPhrase = {
2
+ id: string;
3
+ userId: string;
4
+ songId: string;
5
+ text: string;
6
+ position: number;
7
+ createdAt: string;
8
+ };
9
+ export type StudentsLifeStudentsMeditateSongPhraseCreateInput = {
10
+ text: string;
11
+ };
12
+ export type StudentsLifeStudentsMeditateSongPhraseUpdateInput = {
13
+ text?: string;
14
+ position?: number;
15
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/dist/index.d.ts CHANGED
@@ -3,6 +3,7 @@ export * from "./domains/politicians/planet/officials/manage";
3
3
  export * from "./domains/teachers/prep_center/students/simulate/types";
4
4
  export * from "./domains/students/communication/students/practice";
5
5
  export * from "./domains/students/life/students/live";
6
+ export * from "./domains/students/life/students/meditate";
6
7
  export * from "./domains/lawyers/real_estate/assistants/research";
7
8
  export * from "./domains/artists/gamestory/directors/develop";
8
9
  export * from "./domains/ceos/technology/ceos/manage";
package/dist/index.js CHANGED
@@ -19,6 +19,7 @@ __exportStar(require("./domains/politicians/planet/officials/manage"), exports);
19
19
  __exportStar(require("./domains/teachers/prep_center/students/simulate/types"), exports);
20
20
  __exportStar(require("./domains/students/communication/students/practice"), exports);
21
21
  __exportStar(require("./domains/students/life/students/live"), exports);
22
+ __exportStar(require("./domains/students/life/students/meditate"), exports);
22
23
  __exportStar(require("./domains/lawyers/real_estate/assistants/research"), exports);
23
24
  __exportStar(require("./domains/artists/gamestory/directors/develop"), exports);
24
25
  __exportStar(require("./domains/ceos/technology/ceos/manage"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniteverses/shared",
3
- "version": "1.0.145",
3
+ "version": "1.0.147",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [