MCPcopy Create free account
hub / github.com/PaperDebugger/paperdebugger / put

Method put

webapp/_webapp/src/libs/apiclient.ts:213–222  ·  view source on GitHub ↗
(url: string, data?: object, options?: RequestOptions)

Source from the content-addressed store, hash-verified

211 }
212
213 async put(url: string, data?: object, options?: RequestOptions): Promise<JsonValue> {
214 return this.requestWithErrorToast(
215 {
216 method: "PUT",
217 url,
218 data,
219 },
220 options,
221 );
222 }
223
224 async patch(url: string, data?: object, options?: RequestOptions): Promise<JsonValue> {
225 return this.requestWithErrorToast(

Callers 3

updateSettingsFunction · 0.80
upsertProjectFunction · 0.80
updatePromptFunction · 0.80

Calls 1

requestWithErrorToastMethod · 0.95

Tested by

no test coverage detected