@@ -109,12 +109,8 @@ Example:
109109 {
110110 id : 'projectStatus' ,
111111 title : 'Status' ,
112- type : 'dropdown' ,
113- options : [
114- { label : 'Active' , id : 'ACTIVE' } ,
115- { label : 'Archived' , id : 'ARCHIVED' } ,
116- ] ,
117- value : ( ) => 'ACTIVE' ,
112+ type : 'short-input' ,
113+ placeholder : 'Enter status name (e.g., custom workspace status label)' ,
118114 condition : { field : 'operation' , value : 'update_project' } ,
119115 required : { field : 'operation' , value : 'update_project' } ,
120116 } ,
@@ -344,11 +340,23 @@ Example:
344340 projectId : { type : 'string' , description : 'Project UUID' } ,
345341 runId : { type : 'string' , description : 'Run UUID' } ,
346342 inputParams : { type : 'json' , description : 'Input parameters for project run' } ,
347- dryRun : { type : 'boolean' , description : 'Validate without executing' } ,
348- updateCache : { type : 'boolean' , description : 'Update cached results' } ,
349- updatePublishedResults : { type : 'boolean' , description : 'Update published app results' } ,
350- useCachedSqlResults : { type : 'boolean' , description : 'Use cached SQL results' } ,
351- projectStatus : { type : 'string' , description : 'New project status' } ,
343+ dryRun : { type : 'boolean' , description : 'Perform a dry run without executing the project' } ,
344+ updateCache : {
345+ type : 'boolean' ,
346+ description : '(Deprecated) Update cached results after execution' ,
347+ } ,
348+ updatePublishedResults : {
349+ type : 'boolean' ,
350+ description : 'Update published app results after execution' ,
351+ } ,
352+ useCachedSqlResults : {
353+ type : 'boolean' ,
354+ description : 'Use cached SQL results instead of re-running queries' ,
355+ } ,
356+ projectStatus : {
357+ type : 'string' ,
358+ description : 'New project status name (custom workspace status label)' ,
359+ } ,
352360 limit : { type : 'number' , description : 'Max number of results to return' } ,
353361 offset : { type : 'number' , description : 'Offset for paginated results' } ,
354362 includeArchived : { type : 'boolean' , description : 'Include archived projects' } ,
@@ -376,7 +384,7 @@ Example:
376384 } ,
377385 startTime : { type : 'string' , description : 'Run start time' } ,
378386 endTime : { type : 'string' , description : 'Run end time' } ,
379- elapsedTime : { type : 'number' , description : 'Elapsed time in milliseconds ' } ,
387+ elapsedTime : { type : 'number' , description : 'Elapsed time in seconds ' } ,
380388 traceId : { type : 'string' , description : 'Trace ID for debugging' } ,
381389 // Project outputs
382390 id : { type : 'string' , description : 'Resource ID' } ,
0 commit comments