@uniteverses/shared 1.0.153 → 1.0.155

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 (28) hide show
  1. package/dist/domains/politicians/community/residents/explore/flyer/types.d.ts +3 -1
  2. package/dist/domains/students/life/students/live/condition/types.d.ts +19 -0
  3. package/dist/domains/students/life/students/live/condition/types.js +2 -0
  4. package/dist/domains/students/life/students/live/diary/types.d.ts +20 -0
  5. package/dist/domains/students/life/students/live/diary/types.js +2 -0
  6. package/dist/domains/students/life/students/live/diary-entry/types.d.ts +5 -0
  7. package/dist/domains/students/life/students/live/diary-era/types.d.ts +19 -0
  8. package/dist/domains/students/life/students/live/diary-era/types.js +2 -0
  9. package/dist/domains/students/life/students/live/diary-era-song-cover/types.d.ts +15 -0
  10. package/dist/domains/students/life/students/live/diary-era-song-cover/types.js +2 -0
  11. package/dist/domains/students/life/students/live/diary-era-story/types.d.ts +15 -0
  12. package/dist/domains/students/life/students/live/diary-era-story/types.js +2 -0
  13. package/dist/domains/students/life/students/live/diary-group/types.d.ts +25 -0
  14. package/dist/domains/students/life/students/live/diary-group/types.js +2 -0
  15. package/dist/domains/students/life/students/live/diary-period/types.d.ts +25 -0
  16. package/dist/domains/students/life/students/live/diary-period/types.js +2 -0
  17. package/dist/domains/students/life/students/live/index.d.ts +11 -0
  18. package/dist/domains/students/life/students/live/index.js +11 -0
  19. package/dist/domains/students/life/students/live/organization/types.d.ts +15 -0
  20. package/dist/domains/students/life/students/live/organization/types.js +2 -0
  21. package/dist/domains/students/life/students/live/person/types.d.ts +1 -0
  22. package/dist/domains/students/life/students/live/person-group/types.d.ts +25 -0
  23. package/dist/domains/students/life/students/live/person-group/types.js +2 -0
  24. package/dist/domains/students/life/students/live/person-group-membership/types.d.ts +15 -0
  25. package/dist/domains/students/life/students/live/person-group-membership/types.js +2 -0
  26. package/dist/domains/students/life/students/live/story/types.d.ts +16 -0
  27. package/dist/domains/students/life/students/live/story/types.js +2 -0
  28. package/package.json +1 -1
@@ -1,4 +1,4 @@
1
- export type PoliticiansCommunityResidentsExploreFlyerKind = "event" | "deal" | "news";
1
+ export type PoliticiansCommunityResidentsExploreFlyerKind = "event" | "occurrence" | "deal" | "news";
2
2
  export interface PoliticiansCommunityResidentsExploreFlyerTranslation {
3
3
  languageCode: string;
4
4
  name: string;
@@ -12,6 +12,8 @@ export interface PoliticiansCommunityResidentsExploreFlyerExtract {
12
12
  currentPrice?: string | null;
13
13
  previousPrice?: string | null;
14
14
  discountPercent?: string | null;
15
+ capacity?: string | null;
16
+ rsvpLink?: string | null;
15
17
  }
16
18
  export interface PoliticiansCommunityResidentsExploreFlyerExtractInput {
17
19
  kind: PoliticiansCommunityResidentsExploreFlyerKind;
@@ -0,0 +1,19 @@
1
+ export type StudentsLifeStudentsLiveCondition = {
2
+ id: string;
3
+ userId: string;
4
+ title: string;
5
+ description: string | null;
6
+ position: number;
7
+ createdAt: string;
8
+ };
9
+ export type StudentsLifeStudentsLiveConditionCreateInput = {
10
+ title: string;
11
+ description?: string | null;
12
+ };
13
+ export type StudentsLifeStudentsLiveConditionUpdateInput = {
14
+ title: string;
15
+ description?: string | null;
16
+ };
17
+ export type StudentsLifeStudentsLiveConditionReorderInput = {
18
+ ids: string[];
19
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,20 @@
1
+ export type StudentsLifeStudentsLiveDiary = {
2
+ id: string;
3
+ userId: string;
4
+ diaryGroupId: string;
5
+ name: string;
6
+ description: string | null;
7
+ createdAt: string;
8
+ };
9
+ export type StudentsLifeStudentsLiveDiaryCreateInput = {
10
+ diaryGroupId: string;
11
+ name: string;
12
+ description?: string | null;
13
+ };
14
+ export type StudentsLifeStudentsLiveDiaryUpdateInput = {
15
+ name: string;
16
+ description?: string | null;
17
+ };
18
+ export type StudentsLifeStudentsLiveDiarySetDiaryGroupInput = {
19
+ diaryGroupId: string;
20
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -5,6 +5,7 @@ export type StudentsLifeStudentsLiveDiaryEntry = {
5
5
  past: string | null;
6
6
  content: string;
7
7
  future: string | null;
8
+ diaryId: string | null;
8
9
  createdAt: string;
9
10
  };
10
11
  export type StudentsLifeStudentsLiveDiaryEntryCreateInput = {
@@ -12,6 +13,7 @@ export type StudentsLifeStudentsLiveDiaryEntryCreateInput = {
12
13
  past?: string | null;
13
14
  content: string;
14
15
  future?: string | null;
16
+ diaryId?: string | null;
15
17
  };
16
18
  export type StudentsLifeStudentsLiveDiaryEntryUpdateInput = {
17
19
  date: string;
@@ -19,3 +21,6 @@ export type StudentsLifeStudentsLiveDiaryEntryUpdateInput = {
19
21
  content: string;
20
22
  future?: string | null;
21
23
  };
24
+ export type StudentsLifeStudentsLiveDiaryEntrySetDiaryInput = {
25
+ diaryId: string | null;
26
+ };
@@ -0,0 +1,19 @@
1
+ export type StudentsLifeStudentsLiveDiaryEra = {
2
+ id: string;
3
+ userId: string;
4
+ name: string;
5
+ description: string | null;
6
+ position: number;
7
+ createdAt: string;
8
+ };
9
+ export type StudentsLifeStudentsLiveDiaryEraCreateInput = {
10
+ name: string;
11
+ description?: string | null;
12
+ };
13
+ export type StudentsLifeStudentsLiveDiaryEraUpdateInput = {
14
+ name: string;
15
+ description?: string | null;
16
+ };
17
+ export type StudentsLifeStudentsLiveDiaryEraReorderInput = {
18
+ ids: string[];
19
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ import type { StudentsLifeStudentsMeditateSongCover } from "../../meditate";
2
+ import type { StudentsLifeStudentsLiveDiaryEra } from "../diary-era/types";
3
+ export type StudentsLifeStudentsLiveDiaryEraSongCover = {
4
+ id: string;
5
+ userId: string;
6
+ diaryEraId: string;
7
+ songCoverId: string;
8
+ createdAt: string;
9
+ era: StudentsLifeStudentsLiveDiaryEra;
10
+ cover: StudentsLifeStudentsMeditateSongCover;
11
+ };
12
+ export type StudentsLifeStudentsLiveDiaryEraSongCoverCreateInput = {
13
+ diaryEraId: string;
14
+ songCoverId: string;
15
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ import type { StudentsLifeStudentsLiveDiaryEra } from "../diary-era/types";
2
+ import type { StudentsLifeStudentsLiveStory } from "../story/types";
3
+ export type StudentsLifeStudentsLiveDiaryEraStory = {
4
+ id: string;
5
+ userId: string;
6
+ diaryEraId: string;
7
+ storyId: string;
8
+ createdAt: string;
9
+ era: StudentsLifeStudentsLiveDiaryEra;
10
+ story: StudentsLifeStudentsLiveStory;
11
+ };
12
+ export type StudentsLifeStudentsLiveDiaryEraStoryCreateInput = {
13
+ diaryEraId: string;
14
+ storyId: string;
15
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
1
+ export type StudentsLifeStudentsLiveDiaryGroup = {
2
+ id: string;
3
+ userId: string;
4
+ diaryPeriodId: string;
5
+ organizationId: string;
6
+ name: string;
7
+ description: string | null;
8
+ createdAt: string;
9
+ };
10
+ export type StudentsLifeStudentsLiveDiaryGroupCreateInput = {
11
+ diaryPeriodId: string;
12
+ organizationId: string;
13
+ name: string;
14
+ description?: string | null;
15
+ };
16
+ export type StudentsLifeStudentsLiveDiaryGroupUpdateInput = {
17
+ name: string;
18
+ description?: string | null;
19
+ };
20
+ export type StudentsLifeStudentsLiveDiaryGroupSetPeriodInput = {
21
+ diaryPeriodId: string;
22
+ };
23
+ export type StudentsLifeStudentsLiveDiaryGroupSetOrganizationInput = {
24
+ organizationId: string;
25
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
1
+ export type StudentsLifeStudentsLiveDiaryPeriod = {
2
+ id: string;
3
+ userId: string;
4
+ diaryEraId: string;
5
+ name: string;
6
+ description: string | null;
7
+ position: number;
8
+ createdAt: string;
9
+ };
10
+ export type StudentsLifeStudentsLiveDiaryPeriodCreateInput = {
11
+ diaryEraId: string;
12
+ name: string;
13
+ description?: string | null;
14
+ };
15
+ export type StudentsLifeStudentsLiveDiaryPeriodUpdateInput = {
16
+ name: string;
17
+ description?: string | null;
18
+ };
19
+ export type StudentsLifeStudentsLiveDiaryPeriodSetEraInput = {
20
+ diaryEraId: string;
21
+ };
22
+ export type StudentsLifeStudentsLiveDiaryPeriodReorderInput = {
23
+ diaryEraId: string;
24
+ ids: string[];
25
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,3 +1,4 @@
1
+ export * from "./condition/types";
1
2
  export * from "./reminder/types";
2
3
  export * from "./ideal/types";
3
4
  export * from "./ideal-influence/types";
@@ -5,6 +6,13 @@ export * from "./person/types";
5
6
  export * from "./person-tag/types";
6
7
  export * from "./person-tag-assignment/types";
7
8
  export * from "./person-goal/types";
9
+ export * from "./person-group/types";
10
+ export * from "./person-group-membership/types";
11
+ export * from "./organization/types";
12
+ export * from "./diary-era/types";
13
+ export * from "./diary-period/types";
14
+ export * from "./diary-group/types";
15
+ export * from "./diary/types";
8
16
  export * from "./diary-entry/types";
9
17
  export * from "./goal/types";
10
18
  export * from "./principle/types";
@@ -15,3 +23,6 @@ export * from "./ideal-inspiration/types";
15
23
  export * from "./ideal-character-group/types";
16
24
  export * from "./ideal-character/types";
17
25
  export * from "./ideal-goal/types";
26
+ export * from "./story/types";
27
+ export * from "./diary-era-story/types";
28
+ export * from "./diary-era-song-cover/types";
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./condition/types"), exports);
17
18
  __exportStar(require("./reminder/types"), exports);
18
19
  __exportStar(require("./ideal/types"), exports);
19
20
  __exportStar(require("./ideal-influence/types"), exports);
@@ -21,6 +22,13 @@ __exportStar(require("./person/types"), exports);
21
22
  __exportStar(require("./person-tag/types"), exports);
22
23
  __exportStar(require("./person-tag-assignment/types"), exports);
23
24
  __exportStar(require("./person-goal/types"), exports);
25
+ __exportStar(require("./person-group/types"), exports);
26
+ __exportStar(require("./person-group-membership/types"), exports);
27
+ __exportStar(require("./organization/types"), exports);
28
+ __exportStar(require("./diary-era/types"), exports);
29
+ __exportStar(require("./diary-period/types"), exports);
30
+ __exportStar(require("./diary-group/types"), exports);
31
+ __exportStar(require("./diary/types"), exports);
24
32
  __exportStar(require("./diary-entry/types"), exports);
25
33
  __exportStar(require("./goal/types"), exports);
26
34
  __exportStar(require("./principle/types"), exports);
@@ -31,3 +39,6 @@ __exportStar(require("./ideal-inspiration/types"), exports);
31
39
  __exportStar(require("./ideal-character-group/types"), exports);
32
40
  __exportStar(require("./ideal-character/types"), exports);
33
41
  __exportStar(require("./ideal-goal/types"), exports);
42
+ __exportStar(require("./story/types"), exports);
43
+ __exportStar(require("./diary-era-story/types"), exports);
44
+ __exportStar(require("./diary-era-song-cover/types"), exports);
@@ -0,0 +1,15 @@
1
+ export type StudentsLifeStudentsLiveOrganization = {
2
+ id: string;
3
+ userId: string;
4
+ name: string;
5
+ description: string | null;
6
+ createdAt: string;
7
+ };
8
+ export type StudentsLifeStudentsLiveOrganizationCreateInput = {
9
+ name: string;
10
+ description?: string | null;
11
+ };
12
+ export type StudentsLifeStudentsLiveOrganizationUpdateInput = {
13
+ name: string;
14
+ description?: string | null;
15
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -10,6 +10,7 @@ export type StudentsLifeStudentsLivePersonCreateInput = {
10
10
  firstName: string;
11
11
  lastName: string;
12
12
  description?: string | null;
13
+ personGroupId?: string | null;
13
14
  };
14
15
  export type StudentsLifeStudentsLivePersonUpdateInput = {
15
16
  firstName: string;
@@ -0,0 +1,25 @@
1
+ export type StudentsLifeStudentsLivePersonGroup = {
2
+ id: string;
3
+ userId: string;
4
+ name: string;
5
+ description: string | null;
6
+ parentId: string | null;
7
+ position: number;
8
+ createdAt: string;
9
+ };
10
+ export type StudentsLifeStudentsLivePersonGroupCreateInput = {
11
+ name: string;
12
+ description?: string | null;
13
+ parentId?: string | null;
14
+ };
15
+ export type StudentsLifeStudentsLivePersonGroupUpdateInput = {
16
+ name: string;
17
+ description?: string | null;
18
+ };
19
+ export type StudentsLifeStudentsLivePersonGroupSetParentInput = {
20
+ parentId: string | null;
21
+ };
22
+ export type StudentsLifeStudentsLivePersonGroupReorderInput = {
23
+ parentId: string | null;
24
+ ids: string[];
25
+ };
@@ -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 { StudentsLifeStudentsLivePersonGroup } from "../person-group/types";
3
+ export type StudentsLifeStudentsLivePersonGroupMembership = {
4
+ id: string;
5
+ userId: string;
6
+ personId: string;
7
+ personGroupId: string;
8
+ createdAt: string;
9
+ person: StudentsLifeStudentsLivePerson;
10
+ group: StudentsLifeStudentsLivePersonGroup;
11
+ };
12
+ export type StudentsLifeStudentsLivePersonGroupMembershipCreateInput = {
13
+ personId: string;
14
+ personGroupId: string;
15
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,16 @@
1
+ export type StudentsLifeStudentsLiveStory = {
2
+ id: string;
3
+ userId: string;
4
+ title: string;
5
+ description: string | null;
6
+ createdAt: string;
7
+ };
8
+ export type StudentsLifeStudentsLiveStoryCreateInput = {
9
+ title: string;
10
+ description?: string | null;
11
+ diaryEraId?: string | null;
12
+ };
13
+ export type StudentsLifeStudentsLiveStoryUpdateInput = {
14
+ title: string;
15
+ description?: string | null;
16
+ };
@@ -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.153",
3
+ "version": "1.0.155",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [