@rezti/dsh-rez-suite 0.1.41 → 0.1.42
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/lib/index.js +1 -1
- package/package.json +1 -1
- package/src/observe-mcp.ts +1 -1
package/lib/index.js
CHANGED
|
@@ -2998,7 +2998,7 @@ function observeQccOutsideLegalRoom(input) {
|
|
|
2998
2998
|
}
|
|
2999
2999
|
function observeComposedServers(input) {
|
|
3000
3000
|
return composedServersFor(input).map((server) => {
|
|
3001
|
-
if (server === "qcc" && !isLegalAssistantRoom(input.room)) return observeQccOutsideLegalRoom(input);
|
|
3001
|
+
if (server === "qcc" && input.room !== void 0 && !isLegalAssistantRoom(input.room)) return observeQccOutsideLegalRoom(input);
|
|
3002
3002
|
return observeServer(server, input);
|
|
3003
3003
|
});
|
|
3004
3004
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rezti/dsh-rez-suite",
|
|
3
3
|
"description": "ReZ-TI one-package install for DeepSeek Harness. Update with: dsh plugin --profile web update @rezti/dsh-rez-suite",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.42",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": "^22.19.0 || >=24.0.0"
|
package/src/observe-mcp.ts
CHANGED
|
@@ -134,7 +134,7 @@ function observeQccOutsideLegalRoom(input: ObserveInput): RezServerStatus {
|
|
|
134
134
|
|
|
135
135
|
export function observeComposedServers(input: ObserveInput): RezServerStatus[] {
|
|
136
136
|
return composedServersFor(input).map((server) => {
|
|
137
|
-
if (server === 'qcc' && !isLegalAssistantRoom(input.room)) {
|
|
137
|
+
if (server === 'qcc' && input.room !== undefined && !isLegalAssistantRoom(input.room)) {
|
|
138
138
|
return observeQccOutsideLegalRoom(input)
|
|
139
139
|
}
|
|
140
140
|
return observeServer(server, input)
|