@resolveio/server-lib 22.1.6 → 22.1.7

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.
@@ -130,7 +130,17 @@ export declare function resolveAssistantAvailableCrossCollectionFallbacksFromNam
130
130
  export declare function collectUserViewPermissions(user: any): string[];
131
131
  export declare function userHasInvoiceAccess(user: any): boolean;
132
132
  export declare function resolveAssistantUserAccessTier(user: any): 'super_admin' | 'customer_portal' | 'client_user';
133
+ export declare function resolveCodexThoughtLevel(params?: {
134
+ message?: string;
135
+ attachmentText?: string;
136
+ requestType?: AssistantRequestType;
137
+ }): 'minimal' | 'low' | 'medium' | 'high' | 'xhigh';
133
138
  export declare function classifyAssistantRequestType(message: string, plannerOutput?: any): AssistantRequestClassification;
139
+ export declare function shouldRunAssistantPlanner(params: {
140
+ plannerEnabled: boolean;
141
+ requestClassification: AssistantRequestClassification;
142
+ hasDeterministicHeuristicFastPath: boolean;
143
+ }): boolean;
134
144
  export declare function collectAssistantAllowedRoutesForUser(user: any, allRoutes: string[], isSuperAdmin: boolean): string[];
135
145
  export declare function rankAssistantNavigationRoutes(message: string, routes: string[], limit?: number): string[];
136
146
  export declare function shouldUseAssistantNavigationFastPath(message: string, hasAttachments?: boolean): boolean;