@opencode-ai/sdk 1.0.189 → 1.0.190
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/v2/gen/types.gen.d.ts +12 -0
- package/package.json +1 -1
|
@@ -1020,6 +1020,9 @@ export type AgentConfig = {
|
|
|
1020
1020
|
bash?: "ask" | "allow" | "deny" | {
|
|
1021
1021
|
[key: string]: "ask" | "allow" | "deny";
|
|
1022
1022
|
};
|
|
1023
|
+
skill?: "ask" | "allow" | "deny" | {
|
|
1024
|
+
[key: string]: "ask" | "allow" | "deny";
|
|
1025
|
+
};
|
|
1023
1026
|
webfetch?: "ask" | "allow" | "deny";
|
|
1024
1027
|
doom_loop?: "ask" | "allow" | "deny";
|
|
1025
1028
|
external_directory?: "ask" | "allow" | "deny";
|
|
@@ -1031,6 +1034,9 @@ export type AgentConfig = {
|
|
|
1031
1034
|
bash?: "ask" | "allow" | "deny" | {
|
|
1032
1035
|
[key: string]: "ask" | "allow" | "deny";
|
|
1033
1036
|
};
|
|
1037
|
+
skill?: "ask" | "allow" | "deny" | {
|
|
1038
|
+
[key: string]: "ask" | "allow" | "deny";
|
|
1039
|
+
};
|
|
1034
1040
|
webfetch?: "ask" | "allow" | "deny";
|
|
1035
1041
|
doom_loop?: "ask" | "allow" | "deny";
|
|
1036
1042
|
external_directory?: "ask" | "allow" | "deny";
|
|
@@ -1331,6 +1337,9 @@ export type Config = {
|
|
|
1331
1337
|
bash?: "ask" | "allow" | "deny" | {
|
|
1332
1338
|
[key: string]: "ask" | "allow" | "deny";
|
|
1333
1339
|
};
|
|
1340
|
+
skill?: "ask" | "allow" | "deny" | {
|
|
1341
|
+
[key: string]: "ask" | "allow" | "deny";
|
|
1342
|
+
};
|
|
1334
1343
|
webfetch?: "ask" | "allow" | "deny";
|
|
1335
1344
|
doom_loop?: "ask" | "allow" | "deny";
|
|
1336
1345
|
external_directory?: "ask" | "allow" | "deny";
|
|
@@ -1590,6 +1599,9 @@ export type Agent = {
|
|
|
1590
1599
|
bash: {
|
|
1591
1600
|
[key: string]: "ask" | "allow" | "deny";
|
|
1592
1601
|
};
|
|
1602
|
+
skill: {
|
|
1603
|
+
[key: string]: "ask" | "allow" | "deny";
|
|
1604
|
+
};
|
|
1593
1605
|
webfetch?: "ask" | "allow" | "deny";
|
|
1594
1606
|
doom_loop?: "ask" | "allow" | "deny";
|
|
1595
1607
|
external_directory?: "ask" | "allow" | "deny";
|