@opencode/client 0.0.0-dev-19390 → 0.0.0-dev-19392

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.
@@ -2060,6 +2060,7 @@ export type ProviderInfo = {
2060
2060
  activation: "auto" | "enabled" | "disabled";
2061
2061
  package: string;
2062
2062
  compaction?: ProviderCompaction;
2063
+ websocket?: boolean;
2063
2064
  settings?: {
2064
2065
  [x: string]: any;
2065
2066
  };
@@ -2627,6 +2628,7 @@ export type ModelInfo = {
2627
2628
  compatibility?: ModelCompatibility;
2628
2629
  package?: string;
2629
2630
  compaction?: ProviderCompaction;
2631
+ websocket?: boolean;
2630
2632
  settings?: {
2631
2633
  [x: string]: any;
2632
2634
  };
@@ -2876,6 +2878,7 @@ export type ConfigEntry = {
2876
2878
  providers?: {
2877
2879
  [x: string]: {
2878
2880
  compaction?: ProviderCompaction;
2881
+ websocket?: boolean;
2879
2882
  canonical?: string;
2880
2883
  name?: string;
2881
2884
  env?: Array<string>;
@@ -2892,6 +2895,7 @@ export type ConfigEntry = {
2892
2895
  models?: {
2893
2896
  [x: string]: {
2894
2897
  compaction?: ProviderCompaction;
2898
+ websocket?: boolean;
2895
2899
  modelID?: string;
2896
2900
  family?: string;
2897
2901
  name?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@opencode/client",
4
- "version": "0.0.0-dev-19390",
4
+ "version": "0.0.0-dev-19392",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -57,8 +57,8 @@
57
57
  "typecheck": "tsgo --noEmit"
58
58
  },
59
59
  "dependencies": {
60
- "@opencode/schema": "0.0.0-dev-19390",
61
- "@opencode/protocol": "0.0.0-dev-19390"
60
+ "@opencode/schema": "0.0.0-dev-19392",
61
+ "@opencode/protocol": "0.0.0-dev-19392"
62
62
  },
63
63
  "peerDependencies": {
64
64
  "effect": "4.0.0-rc.112",
@@ -74,7 +74,7 @@
74
74
  },
75
75
  "devDependencies": {
76
76
  "@effect/platform-node": "4.0.0-rc.112",
77
- "@opencode/httpapi-codegen": "0.0.0-dev-19390",
77
+ "@opencode/httpapi-codegen": "0.0.0-dev-19392",
78
78
  "@tsconfig/bun": "1.0.9",
79
79
  "@types/bun": "1.4.0",
80
80
  "@typescript/native-preview": "7.0.0-dev.20251207.1",