@opencode-ai/sdk 1.0.50 → 1.0.52

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.
@@ -192,6 +192,8 @@ export type AgentConfig = {
192
192
  [key: string]: "ask" | "allow" | "deny";
193
193
  };
194
194
  webfetch?: "ask" | "allow" | "deny";
195
+ doom_loop?: "ask" | "allow" | "deny";
196
+ external_directory?: "ask" | "allow" | "deny";
195
197
  };
196
198
  [key: string]: unknown | string | number | {
197
199
  [key: string]: boolean;
@@ -201,6 +203,8 @@ export type AgentConfig = {
201
203
  [key: string]: "ask" | "allow" | "deny";
202
204
  };
203
205
  webfetch?: "ask" | "allow" | "deny";
206
+ doom_loop?: "ask" | "allow" | "deny";
207
+ external_directory?: "ask" | "allow" | "deny";
204
208
  } | undefined;
205
209
  };
206
210
  export type McpLocalConfig = {
@@ -439,6 +443,8 @@ export type Config = {
439
443
  [key: string]: "ask" | "allow" | "deny";
440
444
  };
441
445
  webfetch?: "ask" | "allow" | "deny";
446
+ doom_loop?: "ask" | "allow" | "deny";
447
+ external_directory?: "ask" | "allow" | "deny";
442
448
  };
443
449
  tools?: {
444
450
  [key: string]: boolean;
@@ -960,6 +966,8 @@ export type Agent = {
960
966
  [key: string]: "ask" | "allow" | "deny";
961
967
  };
962
968
  webfetch?: "ask" | "allow" | "deny";
969
+ doom_loop?: "ask" | "allow" | "deny";
970
+ external_directory?: "ask" | "allow" | "deny";
963
971
  };
964
972
  model?: {
965
973
  modelID: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@opencode-ai/sdk",
4
- "version": "1.0.50",
4
+ "version": "1.0.52",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "typecheck": "tsgo --noEmit",