@resolveio/server-lib 22.1.7 → 22.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -135,6 +135,12 @@ export declare function resolveCodexThoughtLevel(params?: {
135
135
  attachmentText?: string;
136
136
  requestType?: AssistantRequestType;
137
137
  }): 'minimal' | 'low' | 'medium' | 'high' | 'xhigh';
138
+ export declare function buildAssistantWorkspaceRootCandidates(params?: {
139
+ serverConfig?: Record<string, any>;
140
+ env?: Record<string, any>;
141
+ cwd?: string;
142
+ dirname?: string;
143
+ }): string[];
138
144
  export declare function classifyAssistantRequestType(message: string, plannerOutput?: any): AssistantRequestClassification;
139
145
  export declare function shouldRunAssistantPlanner(params: {
140
146
  plannerEnabled: boolean;