@powerhousedao/switchboard 6.2.1-dev.0 → 6.2.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.
package/CHANGELOG.md CHANGED
@@ -1,22 +1,10 @@
1
- ## 6.2.1-dev.0 (2026-07-08)
1
+ ## 6.2.1 (2026-07-08)
2
2
 
3
3
  This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
4
4
 
5
- ## 6.2.0-dev.52 (2026-07-08)
5
+ ## 6.2.0 (2026-07-07)
6
6
 
7
- ### 🚀 Features
8
-
9
- - **release:** support rc release channel in CLIs and docker pipeline ([da765dcb4](https://github.com/powerhouse-inc/powerhouse/commit/da765dcb4))
10
- - **connect:** add PWA offline support with Workbox service worker ([d65bbd886](https://github.com/powerhouse-inc/powerhouse/commit/d65bbd886))
11
-
12
- ### 🩹 Fixes
13
-
14
- - install ph-cli@rc for rc-tagged connect/switchboard image builds ([987d68eeb](https://github.com/powerhouse-inc/powerhouse/commit/987d68eeb))
15
-
16
- ### ❤️ Thank You
17
-
18
- - Guillermo Puente @gpuente
19
- - Yasiel Cabrera @YasielCabrera
7
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
20
8
 
21
9
  ## 6.2.0-rc.7 (2026-07-07)
22
10
 
@@ -72,69 +60,6 @@ This was a version bump only for @powerhousedao/switchboard to align it with oth
72
60
 
73
61
  ### ❤️ Thank You
74
62
 
75
- ## 6.2.0-dev.51 (2026-07-07)
76
-
77
- This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
78
-
79
- ## 6.2.0-dev.50 (2026-07-06)
80
-
81
- This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
82
-
83
- ## 6.2.0-dev.49 (2026-07-05)
84
-
85
- This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
86
-
87
- ## 6.2.0-dev.48 (2026-07-04)
88
-
89
- This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
90
-
91
- ## 6.2.0-dev.47 (2026-07-03)
92
-
93
- This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
94
-
95
- ## 6.2.0-dev.46 (2026-07-02)
96
-
97
- This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
98
-
99
- ## 6.2.0-dev.45 (2026-07-02)
100
-
101
- This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
102
-
103
- ## 6.2.0-dev.44 (2026-07-02)
104
-
105
- This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
106
-
107
- ## 6.2.0-dev.43 (2026-07-01)
108
-
109
- This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
110
-
111
- ## 6.2.0-dev.42 (2026-06-30)
112
-
113
- This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
114
-
115
- ## 6.2.0-dev.41 (2026-06-29)
116
-
117
- This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
118
-
119
- ## 6.2.0-dev.40 (2026-06-28)
120
-
121
- This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
122
-
123
- ## 6.2.0-dev.39 (2026-06-27)
124
-
125
- ### 🚀 Features
126
-
127
- - **release:** support rc release channel in CLIs and docker pipeline ([36587b045](https://github.com/powerhouse-inc/powerhouse/commit/36587b045))
128
- - sharedworker entry ([7ba8a90bb](https://github.com/powerhouse-inc/powerhouse/commit/7ba8a90bb))
129
-
130
- ### 🩹 Fixes
131
-
132
- - changed-files action is broken ([63c52e44b](https://github.com/powerhouse-inc/powerhouse/commit/63c52e44b))
133
- - install ph-cli@rc for rc-tagged connect/switchboard image builds ([461284463](https://github.com/powerhouse-inc/powerhouse/commit/461284463))
134
-
135
- ### ❤️ Thank You
136
-
137
- - Benjamin Jordan
138
63
  - Guillermo Puente @gpuente
139
64
 
140
65
  ## 6.2.0-dev.38 (2026-06-26)
package/dist/server.d.mts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { ILogger } from "document-model";
2
- import { ChannelScheme, IDocumentModelLoader, IReactorClient, InProcessReactorClientModule, JwtHandler, ReactorBuilder, ReactorClientBuilder, SignerConfig } from "@powerhousedao/reactor";
2
+ import { ChannelScheme, IDocumentModelLoader, IReactorClient, JwtHandler, ReactorBuilder, ReactorClientBuilder, ReactorClientModule, SignerConfig } from "@powerhousedao/reactor";
3
3
  import { IAttachmentService } from "@powerhousedao/reactor-attachments";
4
4
  import { DriveInput } from "@powerhousedao/shared/document-drive";
5
5
  import { IRenown } from "@renown/sdk/node";
@@ -54,7 +54,7 @@ type StartServerOptions = {
54
54
  * the same defaults switchboard uses internally; opt out of individual
55
55
  * pieces as needed.
56
56
  */
57
- reactor?: InProcessReactorClientModule;
57
+ reactor?: ReactorClientModule;
58
58
  /**
59
59
  * Registry URL for the HttpPackageLoader. Enables `PackagesSubgraph`
60
60
  * (install/uninstall mutations) plus dynamic package resolution.
@@ -1 +1 @@
1
- {"version":3,"file":"server.d.mts","names":[],"sources":["../src/types.ts","../src/builder-defaults.mts","../src/server.mts"],"mappings":";;;;;;;;;;;;;AAeA;;KAAY,4BAAA;;KAKA,qBAAA,GAAwB,UAAA;EAClC,YAAA,GAAe,4BAAA;AAAA;AAAA,KAGL,cAAA;EACV,IAAA;EACA,cAAA;EACA,WAAA;AAAA;AAAA,KAGU,eAAA;EATiC,+DAW3C,WAAA;EARwB;;;;EAaxB,eAAA,YAVA;EAaA,OAAA,WAbW;EAgBX,iBAAA;AAAA;AAAA,KAGU,kBAAA;EAhBe;;;;;;;AAgB3B;;;;;;;;;;;;;EAqBE,OAAA,GAAU,4BAAA;EASV;;;;;;EAFA,WAAA;EACA,UAAA;EACA,IAAA;EAcM;;;;;EARN,UAAA;EACA,GAAA;EACA,MAAA;EACA,KAAA,GAAQ,qBAAA;EACR,QAAA;EACA,YAAA;EACA,KAAA;IAEM,OAAA;IACA,QAAA;EAAA;EA0CQ;;AAGhB;;;EApCE,QAAA,GAAW,eAAA,EAwCQ;EAtCnB,oBAAA;EACA,GAAA;EACA,eAAA,GAAkB,GAAA;EAClB,oBAAA;EACA,4BAAA;EAgCA;;;;;EA1BA,mBAAA;EACA,MAAA,GAAS,OAAA;EA+CT;;;;;;;AClJF;;ED6GE,aAAA;ECrGiB;;;;;;;;;ED+GjB,cAAA;AAAA;AAAA,KAGU,kBAAA;EACV,eAAA;EACA,OAAA,EAAS,cAAA,ECtGT;EDwGA,iBAAA,EAAmB,kBAAA,ECtGnB;EDwGA,MAAA,EAAQ,SAAA;ECvGR;;;;ED4GA,IAAA;ECvGqB;AAYvB;;;;;;;;;;;EDwGE,QAAA,QAAgB,OAAA;AAAA;;;KClJN,iCAAA;;;;;ADCZ;;;ECOE,cAAA,GAAiB,mBAAA,IDPqB;ECStC,iBAAA,YDJ+B;ECM/B,kBAAA;EDL2C;;;;;ECW3C,aAAA,GAAgB,aAAA,UDRN;ECUV,cAAA;EAEA,cAAA;IAAmB,gBAAA;EAAA,GDTnB;ECWA,mBAAA,GAAsB,oBAAA;EACtB,MAAA,GAAS,OAAA;EDTC;;;;ECcV,MAAA,GAAS,YAAA;AAAA;;;;;ADEX;;;;;iBCUgB,+BAAA,CACd,cAAA,EAAgB,cAAA,EAChB,aAAA,EAAe,oBAAA,EACf,OAAA,GAAS,iCAAA;;;;;;;;iBC0CK,eAAA,CAAgB,IAAA,WAAe,OAAA;;iBAqF/B,6BAAA,CACd,OAAA,EAAS,IAAA,CAAK,kBAAA,qCACd,UAAA,UACA,MAAA,EAAQ,OAAA;EACL,SAAA;EAAmB,UAAA,EAAY,UAAA;AAAA;;;;;;;;;AFtKpC;;;;;;;;;cEqrBa,gBAAA,GACX,OAAA,GAAS,kBAAA,KACR,OAAA,CAAQ,kBAAA"}
1
+ {"version":3,"file":"server.d.mts","names":[],"sources":["../src/types.ts","../src/builder-defaults.mts","../src/server.mts"],"mappings":";;;;;;;;;;;;;AAeA;;KAAY,4BAAA;;KAKA,qBAAA,GAAwB,UAAA;EAClC,YAAA,GAAe,4BAAA;AAAA;AAAA,KAGL,cAAA;EACV,IAAA;EACA,cAAA;EACA,WAAA;AAAA;AAAA,KAGU,eAAA;EATiC,+DAW3C,WAAA;EARwB;;;;EAaxB,eAAA,YAVA;EAaA,OAAA,WAbW;EAgBX,iBAAA;AAAA;AAAA,KAGU,kBAAA;EAhBe;;;;;;;AAgB3B;;;;;;;;;;;;;EAqBE,OAAA,GAAU,mBAAA;EASV;;;;;;EAFA,WAAA;EACA,UAAA;EACA,IAAA;EAcM;;;;;EARN,UAAA;EACA,GAAA;EACA,MAAA;EACA,KAAA,GAAQ,qBAAA;EACR,QAAA;EACA,YAAA;EACA,KAAA;IAEM,OAAA;IACA,QAAA;EAAA;EA0CQ;;AAGhB;;;EApCE,QAAA,GAAW,eAAA,EAwCQ;EAtCnB,oBAAA;EACA,GAAA;EACA,eAAA,GAAkB,GAAA;EAClB,oBAAA;EACA,4BAAA;EAgCA;;;;;EA1BA,mBAAA;EACA,MAAA,GAAS,OAAA;EA+CT;;;;;;;AClJF;;ED6GE,aAAA;ECrGiB;;;;;;;;;ED+GjB,cAAA;AAAA;AAAA,KAGU,kBAAA;EACV,eAAA;EACA,OAAA,EAAS,cAAA,ECtGT;EDwGA,iBAAA,EAAmB,kBAAA,ECtGnB;EDwGA,MAAA,EAAQ,SAAA;ECvGR;;;;ED4GA,IAAA;ECvGqB;AAYvB;;;;;;;;;;;EDwGE,QAAA,QAAgB,OAAA;AAAA;;;KClJN,iCAAA;;;;;ADCZ;;;ECOE,cAAA,GAAiB,mBAAA,IDPqB;ECStC,iBAAA,YDJ+B;ECM/B,kBAAA;EDL2C;;;;;ECW3C,aAAA,GAAgB,aAAA,UDRN;ECUV,cAAA;EAEA,cAAA;IAAmB,gBAAA;EAAA,GDTnB;ECWA,mBAAA,GAAsB,oBAAA;EACtB,MAAA,GAAS,OAAA;EDTC;;;;ECcV,MAAA,GAAS,YAAA;AAAA;;;;;ADEX;;;;;iBCUgB,+BAAA,CACd,cAAA,EAAgB,cAAA,EAChB,aAAA,EAAe,oBAAA,EACf,OAAA,GAAS,iCAAA;;;;;;;;iBC0CK,eAAA,CAAgB,IAAA,WAAe,OAAA;;iBAqF/B,6BAAA,CACd,OAAA,EAAS,IAAA,CAAK,kBAAA,qCACd,UAAA,UACA,MAAA,EAAQ,OAAA;EACL,SAAA;EAAmB,UAAA,EAAY,UAAA;AAAA;;;;;;;;;AFtKpC;;;;;;;;;cEqrBa,gBAAA,GACX,OAAA,GAAS,kBAAA,KACR,OAAA,CAAQ,kBAAA"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@powerhousedao/switchboard",
3
3
  "type": "module",
4
- "version": "6.2.1-dev.0",
4
+ "version": "6.2.1",
5
5
  "main": "dist/index.mjs",
6
6
  "exports": {
7
7
  ".": {
@@ -63,17 +63,17 @@
63
63
  "kysely-pglite-dialect": "1.2.0",
64
64
  "pg": "8.18.0",
65
65
  "vite": "8.0.10",
66
- "@powerhousedao/config": "6.2.1-dev.0",
67
- "@powerhousedao/opentelemetry-instrumentation-reactor": "6.2.1-dev.0",
68
- "@powerhousedao/reactor": "6.2.1-dev.0",
69
- "@powerhousedao/shared": "6.2.1-dev.0",
70
- "@powerhousedao/vetra": "6.2.1-dev.0",
71
- "@powerhousedao/reactor-api": "6.2.1-dev.0",
72
- "@powerhousedao/reactor-attachments": "6.2.1-dev.0",
73
- "@powerhousedao/reactor-drive": "6.2.1-dev.0",
74
- "@powerhousedao/pglite-fs": "6.2.1-dev.0",
75
- "document-model": "6.2.1-dev.0",
76
- "@renown/sdk": "6.2.1-dev.0"
66
+ "@powerhousedao/opentelemetry-instrumentation-reactor": "6.2.1",
67
+ "@powerhousedao/reactor": "6.2.1",
68
+ "@powerhousedao/vetra": "6.2.1",
69
+ "@powerhousedao/shared": "6.2.1",
70
+ "@powerhousedao/reactor-api": "6.2.1",
71
+ "@powerhousedao/reactor-attachments": "6.2.1",
72
+ "@powerhousedao/reactor-drive": "6.2.1",
73
+ "@powerhousedao/pglite-fs": "6.2.1",
74
+ "@powerhousedao/config": "6.2.1",
75
+ "document-model": "6.2.1",
76
+ "@renown/sdk": "6.2.1"
77
77
  },
78
78
  "devDependencies": {
79
79
  "@types/express": "^4.17.25",