Skip to content

Commit aad3d11

Browse files
Add mcp config in types.gen.ts
1 parent 918fbd6 commit aad3d11

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

packages/sdk/js/src/gen/types.gen.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,11 @@ export type AgentConfig = {
234234
[key: string]: "ask" | "allow" | "deny"
235235
}
236236
webfetch?: "ask" | "allow" | "deny"
237+
mcp?:
238+
| ("ask" | "allow" | "deny")
239+
| {
240+
[key: string]: "ask" | "allow" | "deny"
241+
}
237242
}
238243
[key: string]:
239244
| unknown
@@ -252,6 +257,11 @@ export type AgentConfig = {
252257
[key: string]: "ask" | "allow" | "deny"
253258
}
254259
webfetch?: "ask" | "allow" | "deny"
260+
mcp?:
261+
| ("ask" | "allow" | "deny")
262+
| {
263+
[key: string]: "ask" | "allow" | "deny"
264+
}
255265
}
256266
| undefined
257267
}
@@ -484,6 +494,11 @@ export type Config = {
484494
[key: string]: "ask" | "allow" | "deny"
485495
}
486496
webfetch?: "ask" | "allow" | "deny"
497+
mcp?:
498+
| ("ask" | "allow" | "deny")
499+
| {
500+
[key: string]: "ask" | "allow" | "deny"
501+
}
487502
}
488503
tools?: {
489504
[key: string]: boolean
@@ -1000,6 +1015,9 @@ export type Agent = {
10001015
[key: string]: "ask" | "allow" | "deny"
10011016
}
10021017
webfetch?: "ask" | "allow" | "deny"
1018+
mcp?: {
1019+
[key: string]: "ask" | "allow" | "deny"
1020+
}
10031021
}
10041022
model?: {
10051023
modelID: string

0 commit comments

Comments
 (0)