@resolveio/server-lib 22.1.8 → 22.1.10
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.
package/methods/ai-terminal.d.ts
CHANGED
|
@@ -127,6 +127,7 @@ export declare function resolveAssistantCollectionOverride(collectionRanking: Re
|
|
|
127
127
|
} | null;
|
|
128
128
|
export declare function resolveAssistantCrossCollectionFallbackCandidates(collection: string): string[];
|
|
129
129
|
export declare function resolveAssistantAvailableCrossCollectionFallbacksFromNames(collection: string, triedCollections: Set<string>, collectionNames: string[]): string[];
|
|
130
|
+
export declare function shouldAcceptAssistantFallbackDocuments(documents: any[]): boolean;
|
|
130
131
|
export declare function collectUserViewPermissions(user: any): string[];
|
|
131
132
|
export declare function userHasInvoiceAccess(user: any): boolean;
|
|
132
133
|
export declare function resolveAssistantUserAccessTier(user: any): 'super_admin' | 'customer_portal' | 'client_user';
|
|
@@ -147,6 +148,7 @@ export declare function shouldRunAssistantPlanner(params: {
|
|
|
147
148
|
requestClassification: AssistantRequestClassification;
|
|
148
149
|
hasDeterministicHeuristicFastPath: boolean;
|
|
149
150
|
}): boolean;
|
|
151
|
+
export declare function shouldEnforceAssistantDatedDirective(message: string, plannerOutput: any, requestClassification: AssistantRequestClassification): boolean;
|
|
150
152
|
export declare function collectAssistantAllowedRoutesForUser(user: any, allRoutes: string[], isSuperAdmin: boolean): string[];
|
|
151
153
|
export declare function rankAssistantNavigationRoutes(message: string, routes: string[], limit?: number): string[];
|
|
152
154
|
export declare function shouldUseAssistantNavigationFastPath(message: string, hasAttachments?: boolean): boolean;
|
|
@@ -163,6 +165,7 @@ export declare function buildAssistantChangeHistorySummaryFromCommits(params: {
|
|
|
163
165
|
isSuperAdmin: boolean;
|
|
164
166
|
commits: AssistantChangeHistoryCommit[];
|
|
165
167
|
branch?: string;
|
|
168
|
+
repositoryName?: string;
|
|
166
169
|
now?: Date;
|
|
167
170
|
}): AssistantChangeHistoryFastPathResult;
|
|
168
171
|
export {};
|