UNPKG

@net3/queuer

Version:

22 lines (21 loc) 623 B
interface ApiConfig { baseUrl: string; apiKey: string; } /** * Fetch all pieces from the platform API. */ export declare function getAllPieces(config: ApiConfig): Promise<any>; /** * Return the actions map for a particular piece. */ export declare function getPieceActions(pieceName: string, config: ApiConfig): Promise<any>; /** * Fetch all MCP pieces from the platform API. */ export declare function getAllMCPPieces(config: ApiConfig): Promise<any>; /** * Fetch connections for a given piece. */ export declare function getPieceConnections(pieceName: string, config: ApiConfig): Promise<any>; export {};