MCPcopy Index your code
hub / github.com/CodebuffAI/codebuff / patch

Function patch

cli/src/utils/codebuff-api.ts:472–478  ·  view source on GitHub ↗
(
      path: string,
      body?: Record<string, unknown>,
      options?: RequestOptions,
    )

Source from the content-addressed store, hash-verified

470 },
471
472 patch<T>(
473 path: string,
474 body?: Record<string, unknown>,
475 options?: RequestOptions,
476 ): Promise<ApiResponse<T>> {
477 return request<T>('PATCH', path, body, options)
478 },
479
480 delete<T>(path: string, options?: RequestOptions): Promise<ApiResponse<T>> {
481 return request<T>('DELETE', path, undefined, options)

Callers

nothing calls this directly

Calls 1

requestFunction · 0.70

Tested by

no test coverage detected