feat: add provider profile management api

This commit is contained in:
Codex
2026-06-05 16:07:26 +08:00
parent 8e64a3974a
commit 05809058a5
5 changed files with 708 additions and 2 deletions
+4
View File
@@ -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);
}