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 || {}), }); }