survey-mcp-server
Version:
Survey management server handling survey creation, response collection, analysis, and reporting with database access for data management
14 lines (13 loc) • 613 B
TypeScript
export declare function fetchCompanyImoNumbers(companyName: string): Promise<string[]>;
export declare function getCompanyImoNumbers(): string[];
export declare function isValidImoForCompany(imoNumber: string | number): boolean;
export declare function shouldBypassImoFiltering(companyName: string): boolean;
interface ErrorResponse {
type: string;
text: string;
title: string;
format: string;
}
export declare function createImoErrorResponse(requestedImo: string, availableImos: string[]): ErrorResponse;
export declare function createSystemErrorResponse(error: Error): ErrorResponse;
export {};