ApiClient
This type is used by an exported signature but is not directly exported from @plandalf/sdk's package entrypoint. It is shown here from core/api.ts:7 so the signature can be inspected fully.
export interface ApiClient {
get<T>(path: string): Promise<T>;
post<T>(path: string, data?: unknown): Promise<T>;
put<T>(path: string, data?: unknown): Promise<T>;
delete<T>(path: string): Promise<T>;
}