From 69df67681eab7c7526cb81b4b0d308b7cf66cb09 Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期三, 20 八月 2025 11:22:07 +0800
Subject: [PATCH] feat: 实名

---
 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