@opencode-ai/client 0.0.0-next-16046 → 0.0.0-next-16048

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.
@@ -17,6 +17,7 @@ export type ModelRef = {
17
17
  export type ProviderSettings = {
18
18
  [x: string]: JsonValue;
19
19
  };
20
+ export type AgentColor = string;
20
21
  export type PermissionV2Effect = "allow" | "deny" | "ask";
21
22
  export type PluginInfo = {
22
23
  id: string;
@@ -2780,7 +2781,7 @@ export type AgentInfo = {
2780
2781
  description?: string;
2781
2782
  mode: "subagent" | "primary" | "all";
2782
2783
  hidden: boolean;
2783
- color?: string;
2784
+ color?: AgentColor;
2784
2785
  steps?: number;
2785
2786
  permissions: PermissionV2Ruleset;
2786
2787
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@opencode-ai/client",
4
- "version": "0.0.0-next-16046",
4
+ "version": "0.0.0-next-16048",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -53,8 +53,8 @@
53
53
  "typecheck": "tsgo --noEmit"
54
54
  },
55
55
  "dependencies": {
56
- "@opencode-ai/schema": "0.0.0-next-16046",
57
- "@opencode-ai/protocol": "0.0.0-next-16046"
56
+ "@opencode-ai/schema": "0.0.0-next-16048",
57
+ "@opencode-ai/protocol": "0.0.0-next-16048"
58
58
  },
59
59
  "peerDependencies": {
60
60
  "effect": "4.0.0-beta.98"
@@ -66,7 +66,7 @@
66
66
  },
67
67
  "devDependencies": {
68
68
  "@effect/platform-node": "4.0.0-beta.98",
69
- "@opencode-ai/httpapi-codegen": "0.0.0-next-16046",
69
+ "@opencode-ai/httpapi-codegen": "0.0.0-next-16048",
70
70
  "@tsconfig/bun": "1.0.9",
71
71
  "@types/bun": "1.3.13",
72
72
  "@typescript/native-preview": "7.0.0-dev.20251207.1",