packages/services/apiV2/user.ts
@@ -97,3 +97,18 @@ ...(options || {}), }); } /** 同步企业用户 POST /api/user/user/syncEnterpriseUser */ export async function syncEnterpriseUser( body: API.SyncEnterpriseUserCommand, options?: API.RequestConfig ) { return request<string>('/api/user/user/syncEnterpriseUser', { method: 'POST', headers: { 'Content-Type': 'application/json-patch+json', }, data: body, ...(options || {}), }); }