feat: add provider profile management api
This commit is contained in:
@@ -12,6 +12,10 @@ export class ManagerClient {
|
||||
return this.request("POST", path, body);
|
||||
}
|
||||
|
||||
async put(path: string, body: JsonValue): Promise<JsonValue> {
|
||||
return this.request("PUT", path, body);
|
||||
}
|
||||
|
||||
async patch(path: string, body: JsonValue): Promise<JsonValue> {
|
||||
return this.request("PATCH", path, body);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user