sap-b1-mcp-server
Version:
SAP Business One Service Layer MCP Server
13 lines (12 loc) • 392 B
TypeScript
import { QueryParams } from '../sap/types.js';
export interface ODataQueryOptions {
filter?: string;
select?: string;
expand?: string;
orderby?: string;
top?: number;
skip?: number;
count?: boolean;
}
export declare function buildODataQueryParams(options?: ODataQueryOptions): QueryParams;
export declare function buildQueryParamsFromArgs(args: any): QueryParams;