orynacode-ai 1.16.23 → 1.16.24

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
- "version": "1.16.23",
3
+ "version": "1.16.24",
4
4
  "name": "orynacode-ai",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -105,7 +105,7 @@ export const configHandlers = HttpApiBuilder.group(InstanceHttpApi, "config", (h
105
105
  const orynaIDs = new Set(["oryna", "orynagate"])
106
106
  const filtered: Record<string, any> = {}
107
107
  for (const [id, info] of Object.entries(allProviders)) {
108
- if (orynaIDs.has(id)) filtered[id] = info
108
+ if (process.env.OPENCODE_CLIENT === "desktop" || orynaIDs.has(id)) filtered[id] = info
109
109
  }
110
110
 
111
111
  const localUrlRecover = process.env.ORYNA_GATE_URL