File tree Expand file tree Collapse file tree
workspaces/boost/plugins/boost-backend Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -78,11 +78,9 @@ export const boostConfigFields: {
7878 readonly description: ' System prompt for AI conversations' ;
7979 };
8080 readonly ' boost.security.mode' : {
81- readonly schema: z .ZodEnum <{
82- full: ' full' ;
83- ' development-only-no-auth' : ' development-only-no-auth' ;
84- ' plugin-only' : ' plugin-only' ;
85- }>;
81+ readonly schema: z .ZodEnum <
82+ [' development-only-no-auth' , ' plugin-only' , ' full' ]
83+ >;
8684 readonly configScope: ConfigScope ;
8785 readonly description: ' Security mode for the boost plugin' ;
8886 };
@@ -97,12 +95,7 @@ export const boostConfigFields: {
9795 readonly description: ' Enable skills marketplace feature' ;
9896 };
9997 readonly ' boost.agentApproval.mode' : {
100- readonly schema: z .ZodOptional <
101- z .ZodEnum <{
102- ' built-in' : ' built-in' ;
103- sonataflow: ' sonataflow' ;
104- }>
105- >;
98+ readonly schema: z .ZodOptional <z .ZodEnum <[' built-in' , ' sonataflow' ]>>;
10699 readonly configScope: ConfigScope ;
107100 readonly description: ' Agent approval mode: built-in or SonataFlow-managed' ;
108101 };
You can’t perform that action at this time.
0 commit comments