@shizuoka-its/core 0.3.1-rc.1 → 0.3.1

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.
@@ -28,7 +28,17 @@ class LightningTalkRepository extends base_repository_1.BaseRepository {
28
28
  async findById(id) {
29
29
  return this.prisma.lightningTalk.findUnique({
30
30
  where: { exhibitId: id },
31
- include: { exhibit: true },
31
+ include: {
32
+ exhibit: {
33
+ include: {
34
+ members: {
35
+ include: {
36
+ member: true,
37
+ },
38
+ },
39
+ },
40
+ },
41
+ },
32
42
  });
33
43
  }
34
44
  async findByEventId(eventId) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shizuoka-its/core",
3
- "version": "0.3.1-rc.1",
3
+ "version": "0.3.1",
4
4
  "description": "ITS core library",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,10 +11,7 @@
11
11
  "publishConfig": {
12
12
  "access": "public"
13
13
  },
14
- "files": [
15
- "dist",
16
- "prisma"
17
- ],
14
+ "files": ["dist", "prisma"],
18
15
  "scripts": {
19
16
  "postinstall": "prisma generate",
20
17
  "build": "tsc",