@opencode-ai/sdk 1.0.58 → 1.0.60
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/dist/gen/types.gen.d.ts +5 -0
- package/package.json +1 -1
package/dist/gen/types.gen.d.ts
CHANGED
|
@@ -186,6 +186,10 @@ export type AgentConfig = {
|
|
|
186
186
|
*/
|
|
187
187
|
description?: string;
|
|
188
188
|
mode?: "subagent" | "primary" | "all";
|
|
189
|
+
/**
|
|
190
|
+
* Hex color code for the agent (e.g., #FF5733)
|
|
191
|
+
*/
|
|
192
|
+
color?: string;
|
|
189
193
|
permission?: {
|
|
190
194
|
edit?: "ask" | "allow" | "deny";
|
|
191
195
|
bash?: ("ask" | "allow" | "deny") | {
|
|
@@ -960,6 +964,7 @@ export type Agent = {
|
|
|
960
964
|
builtIn: boolean;
|
|
961
965
|
topP?: number;
|
|
962
966
|
temperature?: number;
|
|
967
|
+
color?: string;
|
|
963
968
|
permission: {
|
|
964
969
|
edit: "ask" | "allow" | "deny";
|
|
965
970
|
bash: {
|