@powerhousedao/switchboard 4.1.0-dev.125 → 4.1.0-dev.126

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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## 4.1.0-dev.126 (2025-11-19)
2
+
3
+ ### 🩹 Fixes
4
+
5
+ - **switchboard, ph-cli, document-drive:** --skip-generate on prisma db push ([a37f816a4](https://github.com/powerhouse-inc/powerhouse/commit/a37f816a4))
6
+
7
+ ### ❤️ Thank You
8
+
9
+ - acaldas @acaldas
10
+
1
11
  ## 4.1.0-dev.125 (2025-11-19)
2
12
 
3
13
  This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
package/entrypoint.sh CHANGED
@@ -14,7 +14,7 @@ fi
14
14
  # Check if DATABASE_URL starts with postgres and run Prisma db push
15
15
  if [ ! -z "$DATABASE_URL" ] && echo "$DATABASE_URL" | grep -q "^postgres"; then
16
16
  echo "[entrypoint] DATABASE_URL starts with postgres, running Prisma db push..."
17
- prisma db push --schema node_modules/document-drive/dist/prisma/schema.prisma
17
+ prisma db push --schema node_modules/document-drive/dist/prisma/schema.prisma --skip-generate
18
18
  fi
19
19
 
20
20
  echo "[entrypoint] Starting switchboard..."
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@powerhousedao/switchboard",
3
3
  "type": "module",
4
- "version": "4.1.0-dev.125",
4
+ "version": "4.1.0-dev.126",
5
5
  "main": "dist/src/index.js",
6
6
  "exports": {
7
7
  ".": {
@@ -38,11 +38,11 @@
38
38
  "express": "^4.21.2",
39
39
  "graphql": "^16.11.0",
40
40
  "redis": "^4.7.0",
41
- "@powerhousedao/reactor": "4.1.0-dev.125",
42
- "document-model": "4.1.0-dev.125",
43
- "document-drive": "4.1.0-dev.125",
44
- "@powerhousedao/reactor-api": "4.1.0-dev.125",
45
- "@powerhousedao/config": "4.1.0-dev.125"
41
+ "@powerhousedao/config": "4.1.0-dev.126",
42
+ "@powerhousedao/reactor": "4.1.0-dev.126",
43
+ "@powerhousedao/reactor-api": "4.1.0-dev.126",
44
+ "document-drive": "4.1.0-dev.126",
45
+ "document-model": "4.1.0-dev.126"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@types/express": "^4.17.25",