From 0af8996a3476fc4c2f8154d730376e885bdc6e5f Mon Sep 17 00:00:00 2001 From: zgaetano Date: Tue, 31 Mar 2026 15:33:06 -0400 Subject: [PATCH] Remove mcp-gateway/erpnext-mcp/src/types.ts --- mcp-gateway/erpnext-mcp/src/types.ts | 52 ---------------------------- 1 file changed, 52 deletions(-) delete mode 100644 mcp-gateway/erpnext-mcp/src/types.ts diff --git a/mcp-gateway/erpnext-mcp/src/types.ts b/mcp-gateway/erpnext-mcp/src/types.ts deleted file mode 100644 index 5efefff..0000000 --- a/mcp-gateway/erpnext-mcp/src/types.ts +++ /dev/null @@ -1,52 +0,0 @@ -export interface ERPNextConfig { - baseUrl: string; - apiKey: string; - apiSecret: string; -} - -export interface ERPNextListParams { - fields?: string[]; - filters?: Array<[string, string, string, string | number | boolean]>; - or_filters?: Array<[string, string, string, string | number | boolean]>; - order_by?: string; - limit_start?: number; - limit_page_length?: number; - group_by?: string; -} - -export interface ERPNextResponse { - data: T; - message?: string; -} - -export interface ERPNextListResponse { - data: T[]; -} - -export interface PaginatedResult { - total: number; - count: number; - offset: number; - items: T[]; - has_more: boolean; - next_offset?: number; -} - -export interface DocInfo { - name: string; - doctype: string; - [key: string]: unknown; -} - -export interface ToolCategory { - name: string; - description: string; - tools: ToolDefinition[]; -} - -export interface ToolDefinition { - name: string; - title: string; - description: string; - register: (server: unknown, client: unknown) => void; -}