MCPcopy Create free account
hub / github.com/QuantiaAI/helm-agents / apiPut

Function apiPut

apps/web/src/api/client.ts:88–90  ·  view source on GitHub ↗
(path: string, body: unknown)

Source from the content-addressed store, hash-verified

86}
87
88export function apiPut<T>(path: string, body: unknown): Promise<T> {
89 return request<T>(path, { method: "PUT", body: JSON.stringify(body) });
90}
91
92export function apiPost<T>(path: string, body?: unknown): Promise<T> {
93 return request<T>(path, {

Callers 1

saveSettingsFunction · 0.90

Calls 1

requestFunction · 0.85

Tested by

no test coverage detected