@rezti/dsh-rez-suite 0.1.40 → 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/cordis.patch.yml CHANGED
@@ -7,7 +7,7 @@
7
7
  # nextcloud-mcp-server in a reconnect loop.
8
8
  - insert:
9
9
  - id: rez-sso
10
- name: '@rezti/dsh-rez-suite/node_modules/@rezti/dsh-rez-sso'
10
+ name: './node_modules/@rezti/dsh-rez-suite/node_modules/@rezti/dsh-rez-sso/lib/index.js'
11
11
  - id: rez-token-manager
12
12
  name: '@rezti/dsh-rez-token-manager'
13
13
  - id: rez-intent
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.40",
4
+ "version": "0.1.42",
5
5
  "type": "module",
6
6
  "engines": {
7
7
  "node": "^22.19.0 || >=24.0.0"
@@ -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)