@uniteverses/shared 1.0.146 → 1.0.148

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,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,20 @@
1
+ export type StudentsLifeStudentsMeditateSong = {
2
+ id: string;
3
+ userId: string;
4
+ title: string;
5
+ notes: string | null;
6
+ lyrics: string;
7
+ phraseCount: number;
8
+ coverCount: number;
9
+ createdAt: string;
10
+ };
11
+ export type StudentsLifeStudentsMeditateSongCreateInput = {
12
+ title: string;
13
+ notes?: string | null;
14
+ lyrics?: string;
15
+ };
16
+ export type StudentsLifeStudentsMeditateSongUpdateInput = {
17
+ title?: string;
18
+ notes?: string | null;
19
+ lyrics?: string;
20
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,21 @@
1
+ export type StudentsLifeStudentsMeditateSongCover = {
2
+ id: string;
3
+ userId: string;
4
+ songId: string;
5
+ title: string;
6
+ url: string;
7
+ notes: string | null;
8
+ position: number;
9
+ createdAt: string;
10
+ };
11
+ export type StudentsLifeStudentsMeditateSongCoverCreateInput = {
12
+ title: string;
13
+ url: string;
14
+ notes?: string | null;
15
+ };
16
+ export type StudentsLifeStudentsMeditateSongCoverUpdateInput = {
17
+ title?: string;
18
+ url?: string;
19
+ notes?: string | null;
20
+ position?: number;
21
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,18 @@
1
+ export type StudentsLifeStudentsMeditateSongPhrase = {
2
+ id: string;
3
+ userId: string;
4
+ songId: string;
5
+ text: string;
6
+ notes: string | null;
7
+ position: number;
8
+ createdAt: string;
9
+ };
10
+ export type StudentsLifeStudentsMeditateSongPhraseCreateInput = {
11
+ text: string;
12
+ notes?: string | null;
13
+ };
14
+ export type StudentsLifeStudentsMeditateSongPhraseUpdateInput = {
15
+ text?: string;
16
+ notes?: string | null;
17
+ position?: number;
18
+ };
@@ -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.146",
3
+ "version": "1.0.148",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [