From 7343ef57056cbd1197240a58fabb785c84b39691 Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期一, 18 八月 2025 16:51:52 +0800 Subject: [PATCH] fix: bug --- packages/services/apiV2/user.ts | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/packages/services/apiV2/user.ts b/packages/services/apiV2/user.ts index 44bca4f..43f20b8 100644 --- a/packages/services/apiV2/user.ts +++ b/packages/services/apiV2/user.ts @@ -112,3 +112,18 @@ ...(options || {}), }); } + +/** 鍚屾杩愯惀鐢ㄦ埛 POST /api/user/user/syncOperationUser */ +export async function syncOperationUser( + body: API.SyncOperationUserCommand, + options?: API.RequestConfig +) { + return request<string>('/api/user/user/syncOperationUser', { + method: 'POST', + headers: { + 'Content-Type': 'application/json-patch+json', + }, + data: body, + ...(options || {}), + }); +} -- Gitblit v1.9.1