File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -476,6 +476,7 @@ export type CreateProjectRequest = {
476476 readonly dockerNetworkMode ?: string | undefined
477477 readonly dockerSharedNetworkName ?: string | undefined
478478 readonly enableMcpPlaywright ?: boolean | undefined
479+ readonly enableMcpAndroid ?: boolean | undefined
479480 readonly outDir ?: string | undefined
480481 readonly gitTokenLabel ?: string | undefined
481482 readonly skipGithubAuth ?: boolean | undefined
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ export const CreateProjectRequestSchema = Schema.Struct({
4343 dockerNetworkMode : OptionalString ,
4444 dockerSharedNetworkName : OptionalString ,
4545 enableMcpPlaywright : OptionalBoolean ,
46+ enableMcpAndroid : OptionalBoolean ,
4647 outDir : OptionalString ,
4748 gitTokenLabel : OptionalString ,
4849 skipGithubAuth : OptionalBoolean ,
Original file line number Diff line number Diff line change @@ -471,6 +471,7 @@ const toCreateRawOptions = (request: CreateProjectRequest): RawOptions => ({
471471 ? { }
472472 : { dockerSharedNetworkName : request . dockerSharedNetworkName } ) ,
473473 ...( request . enableMcpPlaywright === undefined ? { } : { enableMcpPlaywright : request . enableMcpPlaywright } ) ,
474+ ...( request . enableMcpAndroid === undefined ? { } : { enableMcpAndroid : request . enableMcpAndroid } ) ,
474475 ...( request . outDir === undefined ? { } : { outDir : request . outDir } ) ,
475476 ...( request . gitTokenLabel === undefined ? { } : { gitTokenLabel : request . gitTokenLabel } ) ,
476477 ...( request . skipGithubAuth === undefined ? { } : { skipGithubAuth : request . skipGithubAuth } ) ,
Original file line number Diff line number Diff line change 10811081 "enableMcpPlaywright": {
10821082 "type": "boolean"
10831083 },
1084+ "enableMcpAndroid": {
1085+ "type": "boolean"
1086+ },
10841087 "outDir": {
10851088 "type": "string"
10861089 },
Original file line number Diff line number Diff line change @@ -1188,6 +1188,7 @@ export interface operations {
11881188 dockerNetworkMode ?: string ;
11891189 dockerSharedNetworkName ?: string ;
11901190 enableMcpPlaywright ?: boolean ;
1191+ enableMcpAndroid ?: boolean ;
11911192 outDir ?: string ;
11921193 gitTokenLabel ?: string ;
11931194 skipGithubAuth ?: boolean ;
You can’t perform that action at this time.
0 commit comments