@powerhousedao/switchboard 6.2.2-dev.6 → 6.2.2-dev.60

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/Auth.md CHANGED
@@ -112,7 +112,7 @@ interface VerifiableCredential {
112
112
  1. **Token Decoding**: Extract credential information from JWT
113
113
  2. **Credential Validation**: Verify against W3C standards
114
114
  3. **Issuer Verification**: Check credential issuer authenticity
115
- 4. **Renown API Check**: Validate credential still exists and is valid
115
+ 4. **Credential Existence Check**: Validate credential still exists and is valid — against a remote Renown/Switchboard or this switchboard's own read model (see [Which Renown Instance Is Used](#which-renown-instance-is-used))
116
116
  5. **User Extraction**: Create user object from verified credentials
117
117
 
118
118
  ### 5. **Authorization**
@@ -184,6 +184,64 @@ export ADMINS="0x111,0x222,0x333"
184
184
  }
185
185
  ```
186
186
 
187
+ #### Which Renown Instance Is Used
188
+
189
+ Step 4 of the verification process re-checks that the signer's Renown credential
190
+ still exists. `auth.renown` says which instance answers that question:
191
+
192
+ ```json
193
+ {
194
+ "auth": {
195
+ "enabled": true,
196
+ "admins": ["0x111"],
197
+ "renown": {
198
+ "source": "remote",
199
+ "url": "https://renown.acme.io",
200
+ "switchboardUrl": "https://sb.acme.io/graphql"
201
+ }
202
+ }
203
+ }
204
+ ```
205
+
206
+ | Field | Env override | Meaning |
207
+ | --- | --- | --- |
208
+ | `source` | `RENOWN_SOURCE` | `remote` (default) queries another instance; `self` reads this switchboard's own `renown-read-model` subgraph in-process. |
209
+ | `url` | `RENOWN_URL` | Renown base URL, used for discovery and the REST fallback. Defaults to `https://www.renown.id`. |
210
+ | `switchboardUrl` | `SWITCHBOARD_URL` | A switchboard's GraphQL endpoint to read credentials from directly, skipping discovery. |
211
+
212
+ Env vars win over the config file field by field; a blank value counts as unset.
213
+ With `source: "remote"` the order is `switchboardUrl`, then discovery via `url`,
214
+ then the Renown REST API at `url`. With `source: "self"` both URLs are ignored
215
+ for verification — but `url` still applies to this switchboard's own identity
216
+ (below).
217
+
218
+ Either way the credential's EIP-712 proof is re-verified and expiry and
219
+ delegation binding are re-checked, so a locally stored credential is held to the
220
+ same standard as a remote one. Successful checks are cached per identity for
221
+ `CREDENTIAL_VERIFICATION_CACHE_TTL_MS` (60s default) in both modes, so
222
+ revocation still lags by up to that TTL.
223
+
224
+ `self` requires a loaded package that provides the `renown-read-model` subgraph
225
+ (`@powerhousedao/renown-package`). Startup fails if none does, rather than booting
226
+ a switchboard that rejects every authenticated request.
227
+
228
+ Where the pieces live: `@renown/sdk` owns the read-model contract
229
+ (`RENOWN_READ_MODEL_SUBGRAPH`, `createLocalCredentialVerifier`), this app wires
230
+ it to the running reactor after the API is up, and `reactor-api` only supplies
231
+ the generic `GraphQLManager.executeSubgraphQuery` plus an injectable
232
+ `verifyCredential` — core has no knowledge of the renown package. A host that
233
+ sets `source: "self"` without injecting a verifier is refused at boot rather
234
+ than silently verified against a remote Renown.
235
+
236
+ #### The Switchboard's Own Identity
237
+
238
+ Separately from verifying incoming credentials, a switchboard has its own
239
+ identity — the `ph login` keypair it uses to authenticate *outbound* to remote
240
+ drives and services. It authenticates against `auth.renown.url` too, so one
241
+ setting covers both directions. Pass `identity.baseUrl` when starting the server
242
+ to point it somewhere else; unset everywhere, it falls back to
243
+ `https://www.renown.id`.
244
+
187
245
  ### 2. **Frontend Integration**
188
246
 
189
247
  #### Using the useAuth Hook
package/CHANGELOG.md CHANGED
@@ -1,3 +1,368 @@
1
+ ## 6.2.2-dev.60 (2026-08-26)
2
+
3
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
4
+
5
+ ## 6.2.2-dev.59 (2026-08-25)
6
+
7
+ ### 🩹 Fixes
8
+
9
+ - **reactor:** stable processor cursor ids behind legacyProcessorIds flag ([ee82e90b4](https://github.com/powerhouse-inc/powerhouse/commit/ee82e90b4))
10
+
11
+ ### ❤️ Thank You
12
+
13
+ - acaldas
14
+
15
+ ## 6.2.2-dev.58 (2026-08-25)
16
+
17
+ ### 🚀 Features
18
+
19
+ - **docker:** per-channel compose files on cr.vetra.io with fixed ports ([7d8f51b57](https://github.com/powerhouse-inc/powerhouse/commit/7d8f51b57))
20
+
21
+ ### 🩹 Fixes
22
+
23
+ - **docker:** connect image HEALTHCHECK uses 127.0.0.1 ([4c80c5759](https://github.com/powerhouse-inc/powerhouse/commit/4c80c5759))
24
+ - **docker:** healthcheck 127.0.0.1 instead of localhost in compose files ([e15bb8c9d](https://github.com/powerhouse-inc/powerhouse/commit/e15bb8c9d))
25
+
26
+ ### ❤️ Thank You
27
+
28
+ - froid1911
29
+
30
+ ## 6.2.2-dev.57 (2026-08-24)
31
+
32
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
33
+
34
+ ## 6.2.2-dev.56 (2026-08-23)
35
+
36
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
37
+
38
+ ## 6.2.2-dev.55 (2026-08-22)
39
+
40
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
41
+
42
+ ## 6.2.2-dev.54 (2026-08-21)
43
+
44
+ ### 🚀 Features
45
+
46
+ - ⚠️ **reactor-api:** type the actions mutateDocument accepts ([1b9adbe2a](https://github.com/powerhouse-inc/powerhouse/commit/1b9adbe2a))
47
+
48
+ ### ⚠️ Breaking Changes
49
+
50
+ - **reactor-api:** type the actions mutateDocument accepts ([1b9adbe2a](https://github.com/powerhouse-inc/powerhouse/commit/1b9adbe2a))
51
+
52
+ ### ❤️ Thank You
53
+
54
+ - Benjamin Jordan
55
+ - Claude Fable 5
56
+
57
+ ## 6.2.2-dev.53 (2026-08-20)
58
+
59
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
60
+
61
+ ## 6.2.2-dev.52 (2026-08-19)
62
+
63
+ ### 🚀 Features
64
+
65
+ - **switchboard:** verify renown credentials against the reactor's own read model ([9e7efe532](https://github.com/powerhouse-inc/powerhouse/commit/9e7efe532))
66
+
67
+ ### 🩹 Fixes
68
+
69
+ - **reactor-api,switchboard:** parse PGlite read-model timestamps as UTC ([e6e25758b](https://github.com/powerhouse-inc/powerhouse/commit/e6e25758b))
70
+
71
+ ### ❤️ Thank You
72
+
73
+ - acaldas
74
+
75
+ ## 6.2.2-dev.51 (2026-08-19)
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.2-dev.50 (2026-08-18)
80
+
81
+ ### 🚀 Features
82
+
83
+ - **switchboard:** read the group and condition enforcement flags ([e3d72b0a8](https://github.com/powerhouse-inc/powerhouse/commit/e3d72b0a8))
84
+
85
+ ### 🩹 Fixes
86
+
87
+ - **ci:** install chromium from the package that owns playwright ([653349ee0](https://github.com/powerhouse-inc/powerhouse/commit/653349ee0))
88
+ - **connect:** stage the CSP rewrite instead of sed -i ([ab5cd1d8f](https://github.com/powerhouse-inc/powerhouse/commit/ab5cd1d8f))
89
+
90
+ ### ❤️ Thank You
91
+
92
+ - Benjamin Jordan
93
+ - Claude Opus 5 (1M context)
94
+
95
+ ## 6.2.2-dev.49 (2026-08-17)
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.2-dev.48 (2026-08-15)
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.2-dev.47 (2026-08-14)
104
+
105
+ ### 🩹 Fixes
106
+
107
+ - **connect:** sync CSP registry origin to runtime packageRegistryUrl ([418652419](https://github.com/powerhouse-inc/powerhouse/commit/418652419))
108
+
109
+ ### ❤️ Thank You
110
+
111
+ - Frank Pfeift
112
+
113
+ ## 6.2.2-dev.46 (2026-08-14)
114
+
115
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
116
+
117
+ ## 6.2.2-dev.45 (2026-08-13)
118
+
119
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
120
+
121
+ ## 6.2.2-dev.44 (2026-08-12)
122
+
123
+ ### 🚀 Features
124
+
125
+ - **reactor-api,codegen:** register upgrade manifests on the switchboard ([85383aa0f](https://github.com/powerhouse-inc/powerhouse/commit/85383aa0f))
126
+ - **reactor-group:** ship the PHGroup document model as @powerhousedao/reactor-group ([d5a323016](https://github.com/powerhouse-inc/powerhouse/commit/d5a323016))
127
+
128
+ ### 🩹 Fixes
129
+
130
+ - **shared:** harden the condition evaluator per review ([eea3fb475](https://github.com/powerhouse-inc/powerhouse/commit/eea3fb475))
131
+
132
+ ### ❤️ Thank You
133
+
134
+ - Benjamin Jordan
135
+ - Claude Fable 5
136
+
137
+ ## 6.2.2-dev.43 (2026-08-11)
138
+
139
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
140
+
141
+ ## 6.2.2-dev.42 (2026-08-10)
142
+
143
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
144
+
145
+ ## 6.2.2-dev.41 (2026-08-09)
146
+
147
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
148
+
149
+ ## 6.2.2-dev.40 (2026-08-08)
150
+
151
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
152
+
153
+ ## 6.2.2-dev.39 (2026-08-07)
154
+
155
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
156
+
157
+ ## 6.2.2-dev.38 (2026-08-06)
158
+
159
+ ### 🚀 Features
160
+
161
+ - added recipe e2e tests to the suite ([88cd1a55c](https://github.com/powerhouse-inc/powerhouse/commit/88cd1a55c))
162
+ - auth phase 4 ([28aa9ad6a](https://github.com/powerhouse-inc/powerhouse/commit/28aa9ad6a))
163
+
164
+ ### 🩹 Fixes
165
+
166
+ - stage llm files from pre-commit hook ([0af2ab705](https://github.com/powerhouse-inc/powerhouse/commit/0af2ab705))
167
+ - **reactor:** point preflight:auth at a real store ([c1315a9f9](https://github.com/powerhouse-inc/powerhouse/commit/c1315a9f9))
168
+ - **reactor:** filter initialState and keep auth in a scoped subscription read ([77fee70b4](https://github.com/powerhouse-inc/powerhouse/commit/77fee70b4))
169
+ - **reactor:** degrade the poll query against a remote on the older schema ([0c3aefe65](https://github.com/powerhouse-inc/powerhouse/commit/0c3aefe65))
170
+ - **shared:** stop a state snapshot from installing or replacing a policy ([f947e562e](https://github.com/powerhouse-inc/powerhouse/commit/f947e562e))
171
+ - **shared:** make auth-administration retention a reachability rule ([3db42daac](https://github.com/powerhouse-inc/powerhouse/commit/3db42daac))
172
+
173
+ ### ❤️ Thank You
174
+
175
+ - Benjamin Jordan
176
+ - Claude Fable 5
177
+
178
+ ## 6.2.2-dev.37 (2026-08-05)
179
+
180
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
181
+
182
+ ## 6.2.2-dev.36 (2026-08-04)
183
+
184
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
185
+
186
+ ## 6.2.2-dev.35 (2026-08-03)
187
+
188
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
189
+
190
+ ## 6.2.2-dev.34 (2026-08-02)
191
+
192
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
193
+
194
+ ## 6.2.2-dev.33 (2026-08-01)
195
+
196
+ ### 🩹 Fixes
197
+
198
+ - **reactor:** fixing a few defects with document scope reshuffle specifics ([7546b9ff2](https://github.com/powerhouse-inc/powerhouse/commit/7546b9ff2))
199
+
200
+ ### ❤️ Thank You
201
+
202
+ - Benjamin Jordan
203
+
204
+ ## 6.2.2-dev.32 (2026-07-31)
205
+
206
+ ### 🚀 Features
207
+
208
+ - **reactor:** feature flag guards and spec updates to make plan for guarded reshuffle edge cases ([20b0fd6be](https://github.com/powerhouse-inc/powerhouse/commit/20b0fd6be))
209
+
210
+ ### 🩹 Fixes
211
+
212
+ - **reactor:** fix convergence in the case we deny an operation that has a skip ([21cbb3ecb](https://github.com/powerhouse-inc/powerhouse/commit/21cbb3ecb))
213
+ - auth-scope spec updates, assert ordered streams, and fix some busted default protocol versions ([97c5a37b5](https://github.com/powerhouse-inc/powerhouse/commit/97c5a37b5))
214
+
215
+ ### ❤️ Thank You
216
+
217
+ - Benjamin Jordan
218
+
219
+ ## 6.2.2-dev.31 (2026-07-31)
220
+
221
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
222
+
223
+ ## 6.2.2-dev.30 (2026-07-31)
224
+
225
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
226
+
227
+ ## 6.2.2-dev.29 (2026-07-31)
228
+
229
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
230
+
231
+ ## 6.2.2-dev.28 (2026-07-30)
232
+
233
+ ### 🚀 Features
234
+
235
+ - **reactor-browser:** add IReactorBrowserClient and a light GraphQL client ([#2893](https://github.com/powerhouse-inc/powerhouse/pull/2893))
236
+ - **reactor:** plugging in the first decision model ([27e9b2772](https://github.com/powerhouse-inc/powerhouse/commit/27e9b2772))
237
+
238
+ ### ❤️ Thank You
239
+
240
+ - Benjamin Jordan
241
+ - Guillermo Puente Sandoval @gpuente
242
+
243
+ ## 6.2.2-dev.27 (2026-07-30)
244
+
245
+ ### 🩹 Fixes
246
+
247
+ - **connect:** pin @privy-io/react-auth to 3.35.0 ([909352ce3](https://github.com/powerhouse-inc/powerhouse/commit/909352ce3))
248
+
249
+ ### ❤️ Thank You
250
+
251
+ - acaldas
252
+
253
+ ## 6.2.2-dev.26 (2026-07-30)
254
+
255
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
256
+
257
+ ## 6.2.2-dev.25 (2026-07-29)
258
+
259
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
260
+
261
+ ## 6.2.2-dev.24 (2026-07-29)
262
+
263
+ ### 🩹 Fixes
264
+
265
+ - **reactor:** fix an issue exacerbated by auth where snapshots were ordered by insertion not revision ([4aa32fe1b](https://github.com/powerhouse-inc/powerhouse/commit/4aa32fe1b))
266
+
267
+ ### ❤️ Thank You
268
+
269
+ - Benjamin Jordan
270
+
271
+ ## 6.2.2-dev.23 (2026-07-28)
272
+
273
+ ### 🩹 Fixes
274
+
275
+ - **deps:** pin qr to 0.5.5 so RainbowKit can render the WalletConnect QR ([5343f9178](https://github.com/powerhouse-inc/powerhouse/commit/5343f9178))
276
+
277
+ ### ❤️ Thank You
278
+
279
+ - acaldas
280
+
281
+ ## 6.2.2-dev.22 (2026-07-28)
282
+
283
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
284
+
285
+ ## 6.2.2-dev.21 (2026-07-27)
286
+
287
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
288
+
289
+ ## 6.2.2-dev.20 (2026-07-27)
290
+
291
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
292
+
293
+ ## 6.2.2-dev.19 (2026-07-27)
294
+
295
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
296
+
297
+ ## 6.2.2-dev.18 (2026-07-27)
298
+
299
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
300
+
301
+ ## 6.2.2-dev.17 (2026-07-26)
302
+
303
+ ### 🚀 Features
304
+
305
+ - **attachments:** S3-compatible storage, direct transfers, and document-derived authorization ([#2884](https://github.com/powerhouse-inc/powerhouse/pull/2884))
306
+
307
+ ### ❤️ Thank You
308
+
309
+ - Guillermo Puente Sandoval @gpuente
310
+
311
+ ## 6.2.2-dev.16 (2026-07-25)
312
+
313
+ ### 🩹 Fixes
314
+
315
+ - code review fixes ([318cbefa9](https://github.com/powerhouse-inc/powerhouse/commit/318cbefa9))
316
+ - version 0 is reserved and only 1 and on is available for setting ([193ac4c56](https://github.com/powerhouse-inc/powerhouse/commit/193ac4c56))
317
+ - resolve a contradiction in group membership ([39845a65c](https://github.com/powerhouse-inc/powerhouse/commit/39845a65c))
318
+ - grant evaluation needs to ignore features that do not exist yet ([0c1d06396](https://github.com/powerhouse-inc/powerhouse/commit/0c1d06396))
319
+
320
+ ### ❤️ Thank You
321
+
322
+ - Benjamin Jordan
323
+
324
+ ## 6.2.2-dev.15 (2026-07-24)
325
+
326
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
327
+
328
+ ## 6.2.2-dev.14 (2026-07-23)
329
+
330
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
331
+
332
+ ## 6.2.2-dev.13 (2026-07-23)
333
+
334
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
335
+
336
+ ## 6.2.2-dev.12 (2026-07-23)
337
+
338
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
339
+
340
+ ## 6.2.2-dev.11 (2026-07-22)
341
+
342
+ ### 🚀 Features
343
+
344
+ - **connect:** dynamic packages can contribute to the PWA configuration ([da867e21d](https://github.com/powerhouse-inc/powerhouse/commit/da867e21d))
345
+
346
+ ### ❤️ Thank You
347
+
348
+ - Yasiel Cabrera @YasielCabrera
349
+
350
+ ## 6.2.2-dev.10 (2026-07-21)
351
+
352
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
353
+
354
+ ## 6.2.2-dev.9 (2026-07-20)
355
+
356
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
357
+
358
+ ## 6.2.2-dev.8 (2026-07-19)
359
+
360
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
361
+
362
+ ## 6.2.2-dev.7 (2026-07-18)
363
+
364
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
365
+
1
366
  ## 6.2.2-dev.6 (2026-07-17)
2
367
 
3
368
  This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
package/README.md CHANGED
@@ -156,6 +156,43 @@ The same settings are available programmatically via
156
156
  `startSwitchboard({ workerPool: { numWorkers, dbPoolSizePerWorker, acquireTimeoutMs } })`,
157
157
  which takes precedence over the environment variables.
158
158
 
159
+ ### Reactor Enforcement Flags
160
+
161
+ | Variable | Description | Default |
162
+ | ------------------------------ | ------------------------------------------------------------------ | ------- |
163
+ | `REACTOR_DOCUMENT_DECISIONS` | Decide writes from the document stream, not the meta cache | `false` |
164
+ | `REACTOR_AUTH_ENFORCEMENT` | Enforce the auth scope's policy at admission, replay and read | `false` |
165
+ | `REACTOR_AUTH_GROUPS` | Let `{ group }` principals match against group-document rosters | `false` |
166
+ | `REACTOR_AUTH_CONDITIONS` | Evaluate `where` / `match` conditions on grants | `false` |
167
+
168
+ Set each to the literal `true` to enable. Each flag requires the one above it,
169
+ and switchboard refuses to start on a set that skips one — a partially enforcing
170
+ reactor would apply less than the operator asked for.
171
+
172
+ These change replay outcomes, which are consensus outcomes, so **a flag flips
173
+ for a whole document-sharing fleet, never per node**. Two nodes that share
174
+ documents and disagree on the flags diverge, exactly as two nodes on
175
+ incompatible versions would. Connect carries the same flags in
176
+ `connect.reactor.featureFlags` (see `apps/connect/RUNTIME-CONFIG.md`); a fleet
177
+ that includes browser replicas has to set them there too.
178
+
179
+ Sweep the store before enabling either auth flag — neither unsafe condition is
180
+ repairable after the fact, because the auth stream is never reshuffled:
181
+
182
+ ```bash
183
+ cd packages/reactor && pnpm preflight:auth --pg <connection-string>
184
+ ```
185
+
186
+ Exit `0` is clean for both; `1` means streams unsafe for `authEnforcement`, `2`
187
+ means documents unsafe for `authConditions`, `3` both, and `68` means the run
188
+ died having checked nothing. Gate on the whole code, not on a bit.
189
+
190
+ One expectation worth stating: turning enforcement on protects nothing that
191
+ already exists. The host's permission tables still own sync serving and the
192
+ GraphQL boundary, and every document that predates the auth scope carries an
193
+ uninitialized policy, which allows everything. Enforcement bites only on
194
+ documents that have emitted `INITIALIZE_AUTH`.
195
+
159
196
  ### Authentication Configuration
160
197
 
161
198
  ```typescript
package/dist/index.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  !function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="5a65c537-fadb-5705-95c0-4cec44d7b4d2")}catch(e){}}();
4
- import { a as parseForcePgVersion, r as startSwitchboard } from "./server-Cgud_ONM.mjs";
4
+ import { a as parseForcePgVersion, r as startSwitchboard } from "./server-CQKVIxsA.mjs";
5
5
  import "./utils-Baw7rThP.mjs";
6
6
  import { metrics } from "@opentelemetry/api";
7
7
  import { OTLPTraceExporter } from "@opentelemetry/exporter-trace-otlp-http";