UNPKG

kubo-rpc-client

Version:
23 lines (18 loc) 772 B
import { toUrlSearchParams } from '../../../lib/to-url-search-params.ts' import { decodeRemoteService } from './utils.ts' import type { PinRemoteServiceAPI } from './index.ts' import type { HTTPRPCClient } from '../../../lib/core.ts' export function createLs (client: HTTPRPCClient): PinRemoteServiceAPI['ls'] { return async function ls (options = {}) { // @ts-expect-error cannot derive option type from typedef const { stat, headers, timeout, signal } = options const response = await client.post('pin/remote/service/ls', { timeout, signal, headers, searchParams: stat === true ? toUrlSearchParams({ stat }) : undefined }) const json = await response.json() return json.RemoteServices.map(decodeRemoteService) } }