kubo-rpc-client
Version:
A client library for the Kubo RPC API
23 lines (20 loc) • 712 B
text/typescript
import { CID } from 'multiformats/cid'
import { toUrlSearchParams } from '../lib/to-url-search-params.ts'
import type { RepoAPI } from './index.ts'
import type { HTTPRPCClient } from '../lib/core.ts'
export function createGc (client: HTTPRPCClient): RepoAPI['gc'] {
return async function * gc (options = {}) {
const res = await client.post('repo/gc', {
signal: options.signal,
searchParams: toUrlSearchParams(options),
headers: options.headers,
transform: (res: any) => {
return {
err: res.Error != null ? new Error(res.Error) : null,
cid: res.Key?.['/'] != null ? CID.parse(res.Key['/']) : null
}
}
})
yield * res.ndjson()
}
}