We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9eb3442 commit 3ed0ba9Copy full SHA for 3ed0ba9
1 file changed
packages/sdk/js/src/v2/gen/types.gen.ts
@@ -1132,6 +1132,17 @@ export type McpRemoteConfig = {
1132
*/
1133
export type LayoutConfig = "auto" | "stretch"
1134
1135
+export type ImageAttachmentConfig = {
1136
+ auto_resize?: boolean
1137
+ max_width?: number
1138
+ max_height?: number
1139
+ max_base64_bytes?: number
1140
+}
1141
+
1142
+export type AttachmentConfig = {
1143
+ image?: ImageAttachmentConfig
1144
1145
1146
export type Config = {
1147
$schema?: string
1148
shell?: string
@@ -1246,6 +1257,7 @@ export type Config = {
1246
1257
tools?: {
1247
1258
[key: string]: boolean
1248
1259
}
1260
+ attachment?: AttachmentConfig
1249
1261
enterprise?: {
1250
1262
url?: string
1251
1263
0 commit comments